Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/kotlin/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android电视应用程序未在Google Play商店中显示_Android_Kotlin_Television_Leanback - Fatal编程技术网

Android电视应用程序未在Google Play商店中显示

Android电视应用程序未在Google Play商店中显示,android,kotlin,television,leanback,Android,Kotlin,Television,Leanback,下面是我的清单文件,我已经按照包含了所有必要的代码,但应用程序仍然没有显示在play store搜索中。我使用appId搜索我的Alpha构建,使用我的测试帐户,我已经在测试人员列表中包括了这个帐户 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.test.package">

下面是我的清单文件,我已经按照包含了所有必要的代码,但应用程序仍然没有显示在play store搜索中。我使用appId搜索我的Alpha构建,使用我的测试帐户,我已经在测试人员列表中包括了这个帐户

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test.package">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />


    <uses-feature
        android:name="android.hardware.touchscreen"
        android:required="false" />

    <uses-feature
        android:name="android.software.leanback"
        android:required="true" />


    <application
        android:name=".TestApp"
        android:allowBackup="true"
        android:banner="@drawable/logo"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <receiver android:name=".BootReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter android:directBootAware="true">
                <action android:name="android.intent.action.BOOT_COMPLETED" />
                <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
                <action android:name="android.intent.action.QUICKBOOT_POWERON" />
                <action android:name="android.intent.action.REBOOT"/>
            </intent-filter>
        </receiver>

        <activity
            android:name=".activity.MediaActivity"
            android:theme="@style/Theme.AppCompat"
            android:launchMode="singleInstance"/>

        <activity
            android:name=".activity.CodeActivity"
            android:theme="@style/Theme.Leanback">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name=".activity.CodeAndroidStickActivity"
            android:theme="@style/Theme.AppCompat">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>


我尝试将
android.software.leanback
字段设置为true和false,但仍无法在应用程序清单中显示,您必须声明不需要触摸屏,如示例代码所示;否则,您的应用程序将不会出现在电视设备上的Google Play中

<manifest>
    <uses-feature android:name="android.hardware.touchscreen"
              android:required="false" />
    ...
</manifest>

...