0

我使用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 设备上运行?

4

1 回答 1

0

我升级到 Android 5.1 设备,一切都很好。此外,我还在 5.1 和 4.4 设备上安装了 Android 精益启动器,它在两者上都运行良好。

在 Androidmenfext.xml 文件中调整最低和目标的 API 级别也很有效。

谢谢

铁螳螂7x

于 2015-12-10T02:50:05.597 回答