mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
90f47c7b1d
Removes build dependencies like perl and its XML modules
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.inodes.gus.scummvm.plugin.@PLUGIN_NAME@"
|
|
android:versionCode="@PLUGIN_VERSION_CODE@"
|
|
android:versionName="@VERSION@"
|
|
android:installLocation="preferExternal">
|
|
|
|
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
|
|
|
|
<application android:label="@string/app_name"
|
|
android:description="@string/app_desc"
|
|
android:icon="@drawable/scummvm">
|
|
<receiver android:name="org.inodes.gus.scummvm.PluginProvider"
|
|
android:process="org.inodes.gus.scummvm">
|
|
<intent-filter>
|
|
<action android:name="org.inodes.gus.scummvm.action.PLUGIN_QUERY"/>
|
|
<category android:name="android.intent.category.INFO"/>
|
|
</intent-filter>
|
|
<meta-data android:name="org.inodes.gus.scummvm.meta.UNPACK_LIB"
|
|
android:value="mylib/armeabi/lib@PLUGIN_NAME@.so" />
|
|
</receiver>
|
|
</application>
|
|
|
|
<uses-permission android:name="org.inodes.gus.scummvm.permission.SCUMMVM_PLUGIN"/>
|
|
<uses-configuration android:reqFiveWayNav="true"
|
|
android:reqKeyboardType="qwerty"/>
|
|
|
|
<uses-configuration android:reqTouchScreen="finger"
|
|
android:reqKeyboardType="qwerty"/>
|
|
|
|
<uses-configuration android:reqTouchScreen="stylus"
|
|
android:reqKeyboardType="qwerty"/>
|
|
</manifest>
|
|
|