mirror of
https://github.com/libretro/RetroArch
synced 2024-12-29 12:31:05 +00:00
4fbd787ede
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.
23 lines
731 B
XML
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>
|