3dphotoshoot

annotate android/manifest.xml.in @ 7:7f6e6eb3d20e

some progress...
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 23 May 2015 23:14:44 +0300
parents 9df99687a2ff
children d1b456d08713
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@3 7 <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="21"/>
nuclear@3 8
nuclear@3 9 <uses-permission android:name="android.permission.CAMERA" />
nuclear@3 10 <uses-feature android:name="android.hardware.camera" />
nuclear@0 11
nuclear@0 12 <application android:label="$APPNAME" android:debuggable="true">
nuclear@0 13 <!-- android:icon="@drawable/ic_launcher" -->
nuclear@0 14
nuclear@7 15 <activity android:name="MainActivity" android:label="$APPTITLE"
nuclear@7 16 android:screenOrientation="landscape">
nuclear@0 17
nuclear@0 18 <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/>
nuclear@0 19
nuclear@0 20 <intent-filter>
nuclear@0 21 <action android:name="android.intent.action.MAIN" />
nuclear@0 22 <category android:name="android.intent.category.LAUNCHER" />
nuclear@0 23 </intent-filter>
nuclear@0 24 </activity>
nuclear@0 25 </application>
nuclear@0 26 </manifest>