小米电视应用商店:Android电视应用程序在设备上的商店中不可见

关于小米电视应用商店的问题,在androidtv app中经常遇到, 我已经为Android TV开发了非常有用的网络浏览器,它正在得到社区的关注和良好反馈。因为我是一个非常有经验的开发人员,它只会变得更好,功能更丰富。应用程序当然已经通过了Android TV上提供的所有附加评论。当我使用Clear TV Web Browser从桌面浏览器访问play商店时,我可以看到兼容设备的列表,因此我可以在任何设备上安装应用程序。

我已经为Android TV开发了非常有用的网络浏览器,它正在得到社区的关注和良好反馈。因为我是一个非常有经验的开发人员,它只会变得更好,功能更丰富。应用程序当然已经通过了Android TV上提供的所有附加评论。当我使用Clear TV Web Browser从桌面浏览器访问play商店时,我可以看到兼容设备的列表,因此我可以在任何设备上安装应用程序。

然而,当我在Android电视设备上查看应用商店时,列出的应用很少,我的浏览器也不可见。

我猜我还错过了一些额外的步骤,因为与该设备兼容的批准应用程序应该在那里可见。除非我的应用程序在设备本身的商店中可见,否则更广泛的用户将无法访问它,这是不太理想的。

感谢您的帮助,谢谢。

更新:AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.iberapps.cleartvwebbrowser">
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-feature
        android:name="android.hardware.touchscreen"
        android:required="false" />
    <uses-feature
        android:name="android.software.leanback"
        android:required="true" />
    <application
        android:versionCode="6"
        android:versionName="1.0.6"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:usesCleartextTraffic="true"
        android:hardwareAccelerated="true"
        android:theme="@style/Theme.ClearTVWebBrowser"
        android:banner="@drawable/app_icon_clear2"
        android:logo="@drawable/app_icon_clear2">
        <activity
            android:name="com.iberapps.cleartvwebbrowser.ControlsActivity"
            android:exported="false" />
        <activity
            android:name="com.iberapps.cleartvwebbrowser.MainActivity"
            android:banner="@drawable/app_icon_clear2"
            android:exported="true"
            android:icon="@drawable/app_icon_clear2"
            android:label="@string/app_name"
            android:logo="@drawable/app_icon_clear2"
            android:screenOrientation="landscape">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.iberapps.cleartvwebbrowser.SearchEngineActivity"
            android:exported="false" />
    </application>
</manifest>

本站系公益性非盈利分享网址,本文来自用户投稿,不代表码文网立场,如若转载,请注明出处

(957)
电脑cpu不稳定忽高忽低怎么回事:具有不稳定属性的稳定类(android unstable)
上一篇
ios侠客游初期攻略
下一篇

相关推荐

发表评论

登录 后才能评论

评论列表(20条)