我已经构建了一个电视应用程序,并将其发布到Play商店中。在播放控制台设备列表上,它说该应用程序与Shield Android TV(达西)兼容。但是,当我尝试通过Google Play商店网络应用将其安装在电视上时,它说该应用与设备不兼容。 我尝试了所有可能的方法来使其兼容。即使侧面加载该应用程序也能正常运行,但无法通过Play商店安装。
manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xxx.xxxxx.xxxxxxx">
<uses-feature
android:name="android.software.leanback"
android:required="true" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<application
android:allowBackup="true"
android:banner="@drawable/omni_display_banner"
android:icon="@drawable/omnidisplay_icon"
android:label="@string/app_name"
android:logo="@drawable/omni_display_banner"
android:screenOrientation="landscape"
android:theme="@style/Theme.Leanback">
<activity
android:name=".MainActivity"
android:screenOrientation="landscape"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
bulid.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "xxx.xxxxx.xxxxxxx"
minSdkVersion 21
targetSdkVersion 29
versionCode 9
versionName "0.0.9"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.leanback:leanback:1.0.0'
}
这里我想念什么吗?