/src/compiler/android/AndroidManifest.xml

http://ftk.googlecode.com/ · XML · 15 lines · 15 code · 0 blank · 0 comment · 0 complexity · b481787cfe19d8857713dcc03005bccf MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.libftk.app" android:versionCode="1" android:versionName="1.0">
  4. <application android:label="Ftk" android:icon="@drawable/icon">
  5. <activity android:name="FtkActivity" android:label="Ftk"
  6. android:configChanges="fontScale|keyboard|keyboardHidden|locale|orientation"
  7. android:screenOrientation="portrait">
  8. <intent-filter>
  9. <action android:name="android.intent.action.MAIN" />
  10. <category android:name="android.intent.category.LAUNCHER" />
  11. </intent-filter>
  12. </activity>
  13. </application>
  14. <uses-permission android:name="android.permission.RESTART_PACKAGES"></uses-permission>
  15. </manifest>