|
@@ -1,5 +1,5 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<manifest package="org.love2d.android"
|
|
|
|
|
|
|
+<manifest package="org.love2d.android.executable"
|
|
|
android:installLocation="auto" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
android:installLocation="auto" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
@@ -7,14 +7,17 @@
|
|
|
<!-- Allow writing to external storage -->
|
|
<!-- Allow writing to external storage -->
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
- <application
|
|
|
|
|
|
|
+ <!-- OpenGL ES 2.0 -->
|
|
|
|
|
+ <uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
|
+
|
|
|
|
|
+ <application
|
|
|
android:allowBackup="true"
|
|
android:allowBackup="true"
|
|
|
android:icon="@drawable/love"
|
|
android:icon="@drawable/love"
|
|
|
android:label="LÖVE for Android"
|
|
android:label="LÖVE for Android"
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
|
|
|
- <service android:name=".DownloadService" />
|
|
|
|
|
|
|
+ <service android:name="org.love2d.android.DownloadService" />
|
|
|
<activity
|
|
<activity
|
|
|
- android:name="GameActivity"
|
|
|
|
|
|
|
+ android:name="org.love2d.android.GameActivity"
|
|
|
android:configChanges="orientation|screenSize"
|
|
android:configChanges="orientation|screenSize"
|
|
|
android:label="LÖVE for Android"
|
|
android:label="LÖVE for Android"
|
|
|
android:launchMode="singleTop"
|
|
android:launchMode="singleTop"
|
|
@@ -41,7 +44,7 @@
|
|
|
</intent-filter>
|
|
</intent-filter>
|
|
|
</activity>
|
|
</activity>
|
|
|
<activity
|
|
<activity
|
|
|
- android:name="DownloadActivity"
|
|
|
|
|
|
|
+ android:name="org.love2d.android.DownloadActivity"
|
|
|
android:noHistory="true" >
|
|
android:noHistory="true" >
|
|
|
<intent-filter>
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<action android:name="android.intent.action.VIEW" />
|
|
@@ -60,7 +63,4 @@
|
|
|
</intent-filter>
|
|
</intent-filter>
|
|
|
</activity>
|
|
</activity>
|
|
|
</application>
|
|
</application>
|
|
|
-
|
|
|
|
|
- <!-- OpenGL ES 2.0 -->
|
|
|
|
|
- <uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
|
</manifest>
|
|
</manifest>
|