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.
This commit is contained in:
Braden Farmer 2021-01-01 16:47:17 -07:00
parent 101e623fdc
commit 4fbd787ede
2 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.retroarch"
android:versionCode="1597175230"
android:versionCode="1597175231"
android:versionName="1.9.0"
android:installLocation="internalOnly">
<uses-feature android:glEsVersion="0x00020000" />

View File

@ -6,6 +6,11 @@
<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>