|
@@ -1,11 +1,14 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<manifest package="org.love2d.android"
|
|
<manifest package="org.love2d.android"
|
|
|
- android:versionCode="7"
|
|
|
|
|
- android:versionName="0.9.0-alpha7"
|
|
|
|
|
|
|
+ android:versionCode="8"
|
|
|
|
|
+ android:versionName="0.9.0-alpha8"
|
|
|
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.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
-<application
|
|
|
|
|
|
|
+ <!-- Allow writing to external storage -->
|
|
|
|
|
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
+
|
|
|
|
|
+ <application
|
|
|
android:allowBackup="true"
|
|
android:allowBackup="true"
|
|
|
android:icon="@drawable/ic_launcher"
|
|
android:icon="@drawable/ic_launcher"
|
|
|
android:label="Löve for Android"
|
|
android:label="Löve for Android"
|
|
@@ -18,6 +21,7 @@
|
|
|
<intent-filter>
|
|
<intent-filter>
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
+ <category android:name="tv.ouya.intent.category.GAME"/>
|
|
|
</intent-filter>
|
|
</intent-filter>
|
|
|
</activity>
|
|
</activity>
|
|
|
</application>
|
|
</application>
|
|
@@ -27,7 +31,4 @@
|
|
|
|
|
|
|
|
<!-- OpenGL ES 2.0 -->
|
|
<!-- OpenGL ES 2.0 -->
|
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
|
-
|
|
|
|
|
- <!-- Allow writing to external storage -->
|
|
|
|
|
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
</manifest>
|
|
</manifest>
|