AndroidManifest.xml 685 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="%PACKAGE%"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <uses-sdk android:minSdkVersion="%MINSDK%" />
  7. <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
  8. <activity android:name="%ACTIVITY%"
  9. android:label="@string/app_name">
  10. <intent-filter>
  11. <action android:name="android.intent.action.MAIN" />
  12. <category android:name="android.intent.category.LAUNCHER" />
  13. </intent-filter>
  14. </activity>
  15. </application>
  16. </manifest>