-
Notifications
You must be signed in to change notification settings - Fork 1
.apk in OUYA games menu
Christian Weiske edited this page Sep 3, 2024
·
4 revisions
How to make a side-loaded .apk
file show up in the main OUYA "play" games menu:
- Add intent filter to the manifest:
<category android:name="tv.ouya.intent.category.GAME"/>
- Add image of size 732x412 into
res/drawable-xhdpi/ouya_icon.png
The OUYA user interface uses title and image from the .apk file. Detail page description and screenshots are loaded from the server, and cannot be provided by the apk alone.
Reference: https://github.com/ouya/docs/blob/master/setup.md
Howto: https://ouya.world/t/decompiling-recompiling-apks-for-ouya/239