3dphotoshoot
annotate 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 |
rev | line source |
---|---|
nuclear@0 | 1 <?xml version="1.0" encoding="utf-8"?> |
nuclear@0 | 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
nuclear@0 | 3 package="com.mutantstargoat.$APPNAME" |
nuclear@0 | 4 android:versionCode="1" |
nuclear@0 | 5 android:versionName="1.0"> |
nuclear@0 | 6 |
nuclear@0 | 7 <uses-sdk android:minSdkVersion="9"/> |
nuclear@0 | 8 |
nuclear@0 | 9 <application android:label="$APPNAME" android:debuggable="true"> |
nuclear@0 | 10 <!-- android:icon="@drawable/ic_launcher" --> |
nuclear@0 | 11 |
nuclear@0 | 12 <activity android:name="MainActivity" android:label="$APPTITLE"> |
nuclear@0 | 13 |
nuclear@0 | 14 <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/> |
nuclear@0 | 15 |
nuclear@0 | 16 <intent-filter> |
nuclear@0 | 17 <action android:name="android.intent.action.MAIN" /> |
nuclear@0 | 18 <category android:name="android.intent.category.LAUNCHER" /> |
nuclear@0 | 19 </intent-filter> |
nuclear@0 | 20 </activity> |
nuclear@0 | 21 </application> |
nuclear@0 | 22 </manifest> |