1
- <?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" sundy.android.demo"
4
- android : versionCode =" 1"
5
- android : versionName =" 1.0" >
6
-
7
- <uses-permission android : name =" android.permission.READ_CONTACTS" />
8
- <uses-permission android : name =" android.permission.WRITE_CONTACTS" />
9
- <uses-permission android : name =" android.permission.CAMERA" />
10
- <uses-permission android : name =" android.permission.VIBRATE" />
11
- <uses-permission android : name =" android.permission.ACCESS_COARSE_LOCATION" />
12
- <uses-permission android : name =" android.permission.INTERNET" />
13
-
14
- <application android : icon =" @drawable/icon" android : label =" @string/app_name" >
15
- <activity android : name =" .LauncherActivity"
16
- android : label =" @string/app_name" >
17
- <intent-filter >
18
- <action android : name =" android.intent.action.MAIN" />
19
- <category android : name =" android.intent.category.DEFAULT" />
20
- <category android : name =" android.intent.category.LAUNCHER" />
21
- </intent-filter >
22
- </activity >
23
- <activity android : name =" .log.LogActivity" android : label =" @string/subject_log" >
24
- <intent-filter >
25
- <action android : name =" android.intent.action.MAIN" />
26
- <category android : name =" android.intent.category.SAMPLE_CODE" />
27
- </intent-filter >
28
- </activity >
29
- <activity android : name =" .processthread.ProcessLifecycleActivity" android : label =" @string/subject_process_lifecycle" >
30
- <intent-filter >
31
- <action android : name =" android.intent.action.MAIN" />
32
- <category android : name =" android.intent.category.SAMPLE_CODE" />
33
- </intent-filter >
34
- </activity >
35
-
36
- <activity android : name =" .processthread.ActivityWindowViewRelationship" android : label =" @string/subject_process_activityrelation" >
37
- <intent-filter >
38
- <action android : name =" android.intent.action.MAIN" />
39
- <category android : name =" android.intent.category.SAMPLE_CODE" />
40
- </intent-filter >
41
- </activity >
42
-
43
- <activity android : name =" .activity.MainTestActivity" android : label =" @string/process_activitymaintest" >
44
- <intent-filter >
45
- <action android : name =" android.intent.action.MAIN" />
46
- <category android : name =" android.intent.category.SAMPLE_CODE" />
47
- </intent-filter >
48
- </activity >
49
-
50
- <service android : name =" .service.LauncherService" >
51
- </service >
52
- </application >
53
- <uses-sdk android : minSdkVersion =" 3" />
54
- <uses-configuration android : reqTouchScreen =" notouch" />
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ package =" sundy.android.demo"
4
+ android : versionCode =" 1"
5
+ android : versionName =" 1.0" >
6
+
7
+ <uses-permission android : name =" android.permission.READ_CONTACTS" />
8
+ <uses-permission android : name =" android.permission.WRITE_CONTACTS" />
9
+ <uses-permission android : name =" android.permission.CAMERA" />
10
+ <uses-permission android : name =" android.permission.VIBRATE" />
11
+ <uses-permission android : name =" android.permission.ACCESS_COARSE_LOCATION" />
12
+ <uses-permission android : name =" android.permission.INTERNET" />
13
+
14
+ <application android : icon =" @drawable/icon" android : label =" @string/app_name" >
15
+ <activity android : name =" .LauncherActivity"
16
+ android : label =" @string/app_name" >
17
+ <intent-filter >
18
+ <action android : name =" android.intent.action.MAIN" />
19
+ <category android : name =" android.intent.category.DEFAULT" />
20
+ <category android : name =" android.intent.category.LAUNCHER" />
21
+ </intent-filter >
22
+ </activity >
23
+ <activity android : name =" .log.LogActivity" android : label =" @string/subject_log" >
24
+ <intent-filter >
25
+ <action android : name =" android.intent.action.MAIN" />
26
+ <category android : name =" android.intent.category.SAMPLE_CODE" />
27
+ </intent-filter >
28
+ </activity >
29
+ <activity android : name =" .processthread.ProcessLifecycleActivity" android : label =" @string/subject_process_lifecycle" >
30
+ <intent-filter >
31
+ <action android : name =" android.intent.action.MAIN" />
32
+ <category android : name =" android.intent.category.SAMPLE_CODE" />
33
+ </intent-filter >
34
+ </activity >
35
+
36
+ <activity android : name =" .processthread.ActivityWindowViewRelationship" android : label =" @string/subject_process_activityrelation" >
37
+ <intent-filter >
38
+ <action android : name =" android.intent.action.MAIN" />
39
+ <category android : name =" android.intent.category.SAMPLE_CODE" />
40
+ </intent-filter >
41
+ </activity >
42
+
43
+ <activity android : name =" .activity.MainTestActivity" android : label =" @string/process_activitymaintest" >
44
+ <intent-filter >
45
+ <action android : name =" android.intent.action.MAIN" />
46
+ <category android : name =" android.intent.category.SAMPLE_CODE" />
47
+ </intent-filter >
48
+ </activity >
49
+
50
+ <activity android : name =" .processthread.ThreadConceptActivity" android : label =" @string/process_threadconcept" >
51
+ <intent-filter >
52
+ <action android : name =" android.intent.action.MAIN" />
53
+ <category android : name =" android.intent.category.SAMPLE_CODE" />
54
+ </intent-filter >
55
+ </activity >
56
+
57
+ <activity android : name =" .processthread.HandlerConceptActivity" android : label =" @string/process_handlerconcept" >
58
+ <intent-filter >
59
+ <action android : name =" android.intent.action.MAIN" />
60
+ <category android : name =" android.intent.category.SAMPLE_CODE" />
61
+ </intent-filter >
62
+ </activity >
63
+
64
+ <service android : name =" .service.LauncherService" >
65
+ </service >
66
+ </application >
67
+ <uses-sdk android : minSdkVersion =" 3" />
68
+
55
69
</manifest >
0 commit comments