-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
20 lines (20 loc) · 1.11 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
package="org.pbatchelor.vocshape">
<uses-sdk android:minSdkVersion="17"
android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.SET_RELEASE_APP"/>
<application android:debuggable="true" android:hasCode="false" android:label="vocshape" tools:replace="android:icon,android:theme,android:allowBackup,label" android:icon="@mipmap/icon">
<activity android:configChanges="orientation|keyboardHidden"
android:label="vocshape"
android:name="android.app.NativeActivity"
android:screenOrientation="landscape">
<meta-data android:name="android.app.lib_name" android:value="vocshape"/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>