google play - How to expand mobile app to app for tv (android)? -
i'm trying expand application make available on tv. did in guide getting started tv apps
here manifest:
<uses-feature android:name="android.software.leanback" android:required="false" /> <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <application android:name=".networkaccess.myapplication" android:allowbackup="true" android:banner="@drawable/banner" android:icon="@mipmap/ic_launcher" android:label="amazon codes" android:roundicon="@mipmap/ic_launcher_round" android:supportsrtl="true" android:theme="@style/apptheme"> <activity android:name=".startactivity" android:theme="@style/theme.appcompat.noactionbar"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <activity android:name=".tvactivity" android:label="@string/app_name" android:configchanges="keyboard|keyboardhidden|navigation" android:theme="@style/theme.leanback" android:logo="@drawable/banner" > <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.leanback_launcher" /> </intent-filter> </activity> </application>
i added folder layout-w960dp
in res
in created layout tvactivity. when update application in store, still not available tvs.
what's mistake?
Comments
Post a Comment