aboutsummaryrefslogtreecommitdiffstats
path: root/org_apg_integration_demo/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'org_apg_integration_demo/AndroidManifest.xml')
-rw-r--r--org_apg_integration_demo/AndroidManifest.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/org_apg_integration_demo/AndroidManifest.xml b/org_apg_integration_demo/AndroidManifest.xml
new file mode 100644
index 000000000..a8aa9394b
--- /dev/null
+++ b/org_apg_integration_demo/AndroidManifest.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.apg.api_demo"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <!-- permission to access provider and service, intents are public! -->
+ <uses-permission android:name="org.apg.permission.READ_KEY_DETAILS" />
+
+ <uses-sdk
+ android:minSdkVersion="7"
+ android:targetSdkVersion="14" />
+
+ <application
+ android:icon="@drawable/icon"
+ android:label="APG API Demo" >
+ <activity
+ android:name=".BaseActivity"
+ android:label="APG API Demo" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".IntentDemoActivity"
+ android:label="Intent Demo 1" />
+ </application>
+
+</manifest> \ No newline at end of file