Sebastian Corradi
Sebastian Corradi

Reputation: 1411

Migrate an AndroidTV application to a phone

Is there any process, workaround, tutorial or anything to migrate an androidTV application to a phone?

Thanks for your time.

Upvotes: 0

Views: 162

Answers (1)

abielita
abielita

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

Related Questions