-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
64 lines (55 loc) · 2.1 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
64 lines (55 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2015 Zhang Hai <Dreaming.in.Code.ZH@Gmail.com>
~ All Rights Reserved.
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="me.zhanghai.patternlock.sample">
<uses-sdk android:minSdkVersion="15"/>
<application
android:allowBackup="true"
android:icon="@mipmap/launcher_icon"
android:label="@string/app_name"
android:logo="@mipmap/logo"
android:name=".app.SampleApplication"
android:theme="@style/AppTheme">
<activity
android:name=".app.MainActivity"
android:label="@string/main_title"
android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".app.PatternLockActivity"
android:label="@string/pattern_lock_title"
android:launchMode="singleTop">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".app.MainActivity" />
</activity>
<activity
android:name=".app.SetPatternActivity"
android:label="@string/set_pattern_title"
android:launchMode="singleTop">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".app.PatternLockActivity" />
</activity>
<activity
android:name=".app.ConfirmPatternActivity"
android:label="@string/confirm_pattern_title"
android:launchMode="singleTop" />
<activity
android:name=".app.ResetPatternActivity"
android:label="@string/reset_pattern_title"
android:launchMode="singleTop" />
<activity
android:name=".app.AboutActivity"
android:label="@string/about_title"
android:launchMode="singleTop" />
</application>
</manifest>