aboutsummaryrefslogtreecommitdiffstats
path: root/example/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'example/src/main/AndroidManifest.xml')
-rw-r--r--example/src/main/AndroidManifest.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/example/src/main/AndroidManifest.xml b/example/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..e9bf096
--- /dev/null
+++ b/example/src/main/AndroidManifest.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.openintents.openpgp.example">
+
+ <application
+ android:allowBackup="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="OpenPGP API Example">
+ <activity
+ android:name=".BaseActivity"
+ android:label="OpenPGP API Example">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".OpenPgpApiActivity"
+ android:label="OpenPGP API"
+ android:windowSoftInputMode="stateHidden" />
+ </application>
+
+</manifest> \ No newline at end of file