我使用leanback 库leanback 版本17:23.1.1 构建了一个应用程序。
这是迄今为止的故事:
1) 该应用程序在我所有 5.0 或更高版本的 android 设备上运行。2) 应用程序在模拟器中运行,Android 5.0 或更高版本和 android 4.4 作为操作系统
问题是它不会在我的两台设备上打开和运行,这两个设备是带有 kitkat(Android 4.4.2)的 android 电视盒。我可以安装应用程序并在已安装应用程序列表中查看它;但我无法打开应用程序,也无法在设备上运行
我使用 android studio 创建应用程序。这是应用程序 gradle.build 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Inc.:Google APIs:23'
buildToolsVersion "23.0.2"
defaultConfig {
applicationId 'xxxx.xxxxxx.xxxxx'
minSdkVersion 18
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:leanback-v17:23.1.1'
compile 'com.squareup.picasso:picasso:2.3.2'
}
如何让应用程序在我的 android 4.4 设备上运行?