3dphotoshoot

view android/manifest.xml.in @ 3:9df99687a2ff

the old camera API is horrible
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 15 May 2015 05:15:47 +0300
parents a4bf2687e406
children 7f6e6eb3d20e
line source
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.mutantstargoat.$APPNAME"
4 android:versionCode="1"
5 android:versionName="1.0">
7 <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="21"/>
9 <uses-permission android:name="android.permission.CAMERA" />
10 <uses-feature android:name="android.hardware.camera" />
12 <application android:label="$APPNAME" android:debuggable="true">
13 <!-- android:icon="@drawable/ic_launcher" -->
15 <activity android:name="MainActivity" android:label="$APPTITLE">
17 <meta-data android:name="android.app.lib_name" android:value="$APPNAME"/>
19 <intent-filter>
20 <action android:name="android.intent.action.MAIN" />
21 <category android:name="android.intent.category.LAUNCHER" />
22 </intent-filter>
23 </activity>
24 </application>
25 </manifest>