checkey / AndroidManifest.xml @ e66f015a
History | View | Annotate | Download (1.69 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 |
|
36 |
<intent-filter>
|
37 |
<action android:name="android.intent.action.VIEW" /> |
38 |
|
39 |
<category android:name="android.intent.category.DEFAULT" /> |
40 |
<category android:name="android.intent.category.BROWSABLE" /> |
41 |
|
42 |
<data android:host="androidobservatory.org" /> |
43 |
<data android:scheme="http" /> |
44 |
<data android:scheme="https" /> |
45 |
</intent-filter>
|
46 |
</activity>
|
47 |
</application>
|
48 |
|
49 |
</manifest>
|