diff options
author | ShadowNinja <shadowninja@minetest.net> | 2016-04-13 14:14:04 -0400 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2016-04-28 12:28:42 -0400 |
commit | e41673820ffe200df78b1ec185ccb9d9ca962ae1 (patch) | |
tree | 94c0fda8c113920eb07bc97d03c7c551f8b6146f /build/android/AndroidManifest.xml.template | |
parent | 7baddd173591cc9394d57cdb265f978495314f7a (diff) | |
download | minetest-e41673820ffe200df78b1ec185ccb9d9ca962ae1.tar.gz minetest-e41673820ffe200df78b1ec185ccb9d9ca962ae1.tar.bz2 minetest-e41673820ffe200df78b1ec185ccb9d9ca962ae1.zip |
Upgrade Android build to Gradle build system
The old Ant build system has been deprecated for a while and new development is focused on Gradle.
I also removed a hardcoded string that lint caught and moved the patch files to a subdirectory.
I left the JNI files in the root directory.
Diffstat (limited to 'build/android/AndroidManifest.xml.template')
-rw-r--r-- | build/android/AndroidManifest.xml.template | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/build/android/AndroidManifest.xml.template b/build/android/AndroidManifest.xml.template deleted file mode 100644 index 0f75ca648..000000000 --- a/build/android/AndroidManifest.xml.template +++ /dev/null @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="net.minetest.minetest" - android:versionCode="###ANDROID_VERSION###" - android:versionName="###BASE_VERSION###.###ANDROID_VERSION###" - android:installLocation="auto"> - <uses-sdk android:minSdkVersion="9"/> - <uses-feature android:glEsVersion="0x00010000" android:required="true"/> - <uses-permission android:name="android.permission.INTERNET" /> - <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> - ###DEBUG_BUILD### - <application android:icon="@drawable/irr_icon" android:label="Minetest" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" ###DEBUG_FLAG###> - <activity android:name=".MtNativeActivity" - android:label="Minetest" - android:launchMode="singleTask" - android:configChanges="orientation|keyboard|keyboardHidden|navigation" - android:screenOrientation="sensorLandscape" - android:clearTaskOnLaunch="true"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - <meta-data android:name="android.app.lib_name" android:value="minetest" /> - </activity> - <activity android:name=".MinetestTextEntry" - android:theme="@style/Theme.Transparent" - android:excludeFromRecents="true"> - </activity> - <activity android:name=".MinetestAssetCopy" - android:theme="@style/Theme.Transparent" - android:excludeFromRecents="true"> - </activity> - </application> -</manifest> |