RetroArch/pkg/android/phoenix/module_template/AndroidManifest.xml
Braden Farmer 4fbd787ede Play Store: install cores at download time on Android TV devices
Fixes issues with downloading cores on Android TV. On-demand module downloads are apparently unsupported on Android TV, so we need to fetch modules at install-time instead.
2021-01-01 16:47:17 -07:00

23 lines
731 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution"
package="com.retroarch.modules.%CORE_NAME%">
<dist:module dist:title="@string/%CORE_NAME%">
<dist:delivery>
<dist:on-demand />
<dist:install-time>
<dist:conditions>
<dist:device-feature dist:name="android.software.leanback"/>
</dist:conditions>
</dist:install-time>
</dist:delivery>
<dist:fusing dist:include="true" />
</dist:module>
<application
android:hasCode="false"
android:extractNativeLibs="true" />
</manifest>