checkey / AndroidManifest.xml @ 71a5ef30
History | View | Annotate | Download (1.26 KB)
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
|---|---|
| 2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 |
package="info.guardianproject.checkey" |
| 4 |
android:versionCode="1" |
| 5 |
android:versionName="1.0" > |
| 6 |
|
| 7 |
<uses-sdk
|
| 8 |
android:minSdkVersion="7" |
| 9 |
android:targetSdkVersion="19" /> |
| 10 |
|
| 11 |
<uses-permission android:name="android.permission.INTERNET" /> |
| 12 |
|
| 13 |
<application
|
| 14 |
android:allowBackup="true" |
| 15 |
android:icon="@drawable/ic_launcher" |
| 16 |
android:label="@string/app_name" |
| 17 |
android:theme="@style/AppTheme" > |
| 18 |
<activity
|
| 19 |
android:name="info.guardianproject.checkey.MainActivity" |
| 20 |
android:label="@string/app_name" > |
| 21 |
<intent-filter>
|
| 22 |
<action android:name="android.intent.action.MAIN" /> |
| 23 |
|
| 24 |
<category android:name="android.intent.category.LAUNCHER" /> |
| 25 |
</intent-filter>
|
| 26 |
</activity>
|
| 27 |
<activity
|
| 28 |
android:name=".WebViewActivity" |
| 29 |
android:parentActivityName=".MainActivity" > |
| 30 |
|
| 31 |
<!-- Parent activity meta-data to support 4.0 and lower -->
|
| 32 |
<meta-data
|
| 33 |
android:name="android.support.PARENT_ACTIVITY" |
| 34 |
android:value=".MainActivity" /> |
| 35 |
</activity>
|
| 36 |
</application>
|
| 37 |
|
| 38 |
</manifest>
|