35 lines
1.7 KiB
XML
35 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android = "http://schemas.android.com/apk/res/android"
|
|
android:versionCode = "1"
|
|
android:versionName = "1.0"
|
|
package = "com.mormot">
|
|
|
|
<uses-permission android:name = "android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name = "android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name = "android.permission.READ_PHONE_STATE" />
|
|
|
|
<supports-screens android:smallScreens = "true"
|
|
android:normalScreens = "true"
|
|
android:largeScreens = "true"
|
|
android:anyDensity = "true" />
|
|
|
|
<uses-sdk android:minSdkVersion = "11"
|
|
android:targetSdkVersion = "21"/>
|
|
|
|
<application android:label = "@string/app_name"
|
|
android:icon = "@drawable/icon"
|
|
android:hardwareAccelerated = "true"
|
|
android:debuggable = "true">
|
|
<activity android:name = "App"
|
|
android:largeHeap = "true"
|
|
android:label = "@string/app_name"
|
|
android:screenOrientation = "portrait"
|
|
android:configChanges = "orientation|screenSize|keyboardHidden">
|
|
<intent-filter>
|
|
<action android:name = "android.intent.action.MAIN" />
|
|
<category android:name = "android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|