mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-11 11:35:07 -05:00
31 lines
1003 B
XML
31 lines
1003 B
XML
<?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> |