3dphotoshoot
diff android/manifest.xml.in @ 0:a4bf2687e406
3d photoshoot initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 12 May 2015 05:31:21 +0300 |
parents | |
children | 9df99687a2ff |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/android/manifest.xml.in Tue May 12 05:31:21 2015 +0300 1.3 @@ -0,0 +1,22 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<manifest xmlns:android="http://schemas.android.com/apk/res/android" 1.6 + package="com.mutantstargoat.$APPNAME" 1.7 + android:versionCode="1" 1.8 + android:versionName="1.0"> 1.9 + 1.10 + <uses-sdk android:minSdkVersion="9"/> 1.11 + 1.12 + <application android:label="$APPNAME" android:debuggable="true"> 1.13 + <!-- android:icon="@drawable/ic_launcher" --> 1.14 + 1.15 + <activity android:name="MainActivity" android:label="$APPTITLE"> 1.16 + 1.17 + <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/> 1.18 + 1.19 + <intent-filter> 1.20 + <action android:name="android.intent.action.MAIN" /> 1.21 + <category android:name="android.intent.category.LAUNCHER" /> 1.22 + </intent-filter> 1.23 + </activity> 1.24 + </application> 1.25 +</manifest>