/src/compiler/android/AndroidManifest.xml
http://ftk.googlecode.com/ · XML · 15 lines · 15 code · 0 blank · 0 comment · 0 complexity · b481787cfe19d8857713dcc03005bccf MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.libftk.app" android:versionCode="1" android:versionName="1.0">
- <application android:label="Ftk" android:icon="@drawable/icon">
- <activity android:name="FtkActivity" android:label="Ftk"
- android:configChanges="fontScale|keyboard|keyboardHidden|locale|orientation"
- android:screenOrientation="portrait">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- <uses-permission android:name="android.permission.RESTART_PACKAGES"></uses-permission>
- </manifest>