|
|
@@ -0,0 +1,37 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ package="org.uab.android.permission.lauchthemissiles"
|
|
|
+ android:versionCode="1"
|
|
|
+ android:versionName="1.0" >
|
|
|
+
|
|
|
+ <uses-sdk
|
|
|
+ android:minSdkVersion="14"
|
|
|
+ android:targetSdkVersion="19" />
|
|
|
+
|
|
|
+ <permission
|
|
|
+ android:name="org.uab.android.permission.lauchthemissiles.LAUNCH_PERMISSION"
|
|
|
+ android:protectionLevel="dangerous"/>
|
|
|
+
|
|
|
+ <application
|
|
|
+ android:allowBackup="true"
|
|
|
+ android:icon="@drawable/ic_launcher"
|
|
|
+ android:label="@string/app_name"
|
|
|
+ android:theme="@style/AppTheme" >
|
|
|
+ <activity
|
|
|
+ android:name=".MainActivity"
|
|
|
+ android:label="@string/app_name"
|
|
|
+ android:permission="org.uab.android.permission.lauchthemissiles.LAUNCH_PERMISSION" >
|
|
|
+ <intent-filter>
|
|
|
+ <action android:name="android.intent.action.MAIN" />
|
|
|
+
|
|
|
+ <category android:name="android.intent.category.LAUNCHER" />
|
|
|
+ </intent-filter>
|
|
|
+
|
|
|
+ <intent-filter>
|
|
|
+ <action android:name="org.uab.android.permission.lauchthemissiles.LAUNCH"/>
|
|
|
+ <category android:name="android.intent.category.DEFAULT"/>
|
|
|
+ </intent-filter>
|
|
|
+ </activity>
|
|
|
+ </application>
|
|
|
+
|
|
|
+</manifest>
|