Reputation: 1411
Is there any process, workaround, tutorial or anything to migrate an androidTV application to a phone?
Thanks for your time.
Upvotes: 0
Views: 162
Reputation: 13469
Unfortunately, I only see examples and tutorials on installing mobile app to AndroidTV. You can check it in this thread: Installing android mobile apps on android TV
Perhaps the single most important thing in your manifest would be
<manifest> <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> ... </manifest>
to allow the APK to be installed on TV.
Then you can deal with other subject mentioned in the comments as
LEANBACK_LAUNCHER
.
You need to program separate mobile apps for TV and phone devices.
Upvotes: 1