1- <?xml version =" 1.0" encoding =" utf-8" ?>
2- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3- package =" oly.netpowerctrl"
4- android : versionCode =" 1"
5- android : versionName =" 1.0" >
6-
7- <uses-sdk android : minSdkVersion =" 8"
8- android : targetSdkVersion =" 17" />
9-
10- <uses-permission android : name =" android.permission.INTERNET" />
11-
12- <application
13- android : icon =" @drawable/netpowerctrl"
14- android : label =" @string/app_name" android : allowBackup =" true" >
15- <activity
16- android : name =" .NetpowerctrlActivity"
17- android : label =" @string/app_name"
18- android : configChanges =" keyboardHidden|orientation|screenSize"
19- android : theme =" @style/Theme.CustomLightTheme" >
20- <intent-filter >
21- <action android : name =" android.intent.action.MAIN" />
22- <category android : name =" android.intent.category.LAUNCHER" />
23- </intent-filter >
24- </activity >
25-
26- <activity
27- android : name =" .DevicePreferences"
28- android : configChanges =" keyboardHidden|orientation|screenSize" >
29- </activity >
30-
31- <activity
32- android : name =" .Preferences"
33- android : configChanges =" keyboardHidden|orientation|screenSize" >
34- </activity >
35-
36- <activity
37- android : name =" .OutletConfig"
38- android : configChanges =" keyboardHidden|orientation|screenSize"
39- android : windowSoftInputMode =" adjustPan" > <!-- needed for focusable EditText inside ListView -->
40- </activity >
41-
42- <activity
43- android : name =" .DeviceControlActivity"
44- android : configChanges =" keyboardHidden|orientation|screenSize"
45- android : theme =" @style/Theme.CustomLightTheme" >
46- </activity >
47-
48- <activity android : name =" .WidgetConfig" >
49- <intent-filter >
50- <action android : name =" android.appwidget.action.APPWIDGET_CONFIGURE" />
51- </intent-filter >
52- </activity >
53-
54- <receiver
55- android : icon =" @drawable/netpowerctrl"
56- android : label =" @string/app_name"
57- android : name =" .DeviceWidgetProvider" >
58- <intent-filter >
59- <action android : name =" android.appwidget.action.APPWIDGET_UPDATE" />
60- </intent-filter >
61-
62- <meta-data
63- android : name =" android.appwidget.provider"
64- android : resource =" @xml/appwidget_provider" />
65- </receiver >
66-
67- <service
68- android : label =" @string/app_name"
69- android : icon =" @drawable/netpowerctrl"
70- android : name =" .NetpowerctrlService"
71- android : permission =" android.permission.INTERNET" >
72- </service >
73-
74- </application >
75-
76-
1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3+ package =" oly.netpowerctrl"
4+ android : versionCode =" 1"
5+ android : versionName =" 1.0" >
6+
7+ <uses-sdk android : minSdkVersion =" 14"
8+ android : targetSdkVersion =" 17" />
9+
10+ <uses-permission android : name =" android.permission.INTERNET" />
11+
12+ <application
13+ android : icon =" @drawable/netpowerctrl"
14+ android : label =" @string/app_name" android : allowBackup =" true" >
15+ <activity
16+ android : name =" oly.netpowerctrl.main.NetpowerctrlActivity"
17+ android : label =" @string/app_name"
18+ android : configChanges =" keyboardHidden|orientation|screenSize"
19+ android : theme =" @style/Theme.CustomLightTheme" >
20+ <intent-filter >
21+ <action android : name =" android.intent.action.MAIN" />
22+ <category android : name =" android.intent.category.LAUNCHER" />
23+ </intent-filter >
24+ </activity >
25+
26+ <activity
27+ android : name =" oly.netpowerctrl.preferences.DevicePreferencesActivity"
28+ android : configChanges =" keyboardHidden|orientation|screenSize" >
29+ </activity >
30+
31+ <activity android : name =" oly.netpowerctrl.preferences.PreferencesActivity"
32+ android : configChanges =" keyboardHidden|orientation|screenSize" >
33+ </activity >
34+
35+ <activity
36+ android : name =" oly.netpowerctrl.outletconfig.OutletConfig"
37+ android : configChanges =" keyboardHidden|orientation|screenSize"
38+ android : windowSoftInputMode =" adjustPan" > <!-- needed for focusable EditText inside ListView -->
39+ </activity >
40+
41+ <activity
42+ android : name =" oly.netpowerctrl.main.DeviceControlActivity"
43+ android : configChanges =" keyboardHidden|orientation|screenSize"
44+ android : theme =" @style/Theme.CustomLightTheme" >
45+ </activity >
46+
47+ <activity
48+ android : name =" oly.netpowerctrl.service.ShortcutExecutionActivity"
49+ android : label =" @string/app_name"
50+ android : icon =" @drawable/netpowerctrl"
51+ android : exported =" true" >
52+ </activity >
53+
54+ <activity android : name =" oly.netpowerctrl.service.WidgetConfig" >
55+ <intent-filter >
56+ <action android : name =" android.appwidget.action.APPWIDGET_CONFIGURE" />
57+ </intent-filter >
58+ </activity >
59+
60+ <activity
61+ android : icon =" @drawable/netpowerctrl"
62+ android:label=" @string/app_name"
63+ android:name=" oly.netpowerctrl.service.ShortcutCreatorActivity" >
64+ <intent-filter >
65+ <action android : name =" android.intent.action.CREATE_SHORTCUT" />
66+ <category android : name =" android.intent.category.DEFAULT" />
67+ </intent-filter >
68+ </activity >
69+
70+ <receiver
71+ android : icon =" @drawable/netpowerctrl"
72+ android : label =" @string/app_name"
73+ android : name =" oly.netpowerctrl.service.DeviceWidgetProvider" >
74+ <intent-filter >
75+ <action android : name =" android.appwidget.action.APPWIDGET_UPDATE" />
76+ </intent-filter >
77+
78+ <meta-data
79+ android : name =" android.appwidget.provider"
80+ android : resource =" @xml/appwidget_provider" />
81+ </receiver >
82+
83+ <service
84+ android : label =" @string/app_name"
85+ android : icon =" @drawable/netpowerctrl"
86+ android : name =" oly.netpowerctrl.service.NetpowerctrlService"
87+ android : permission =" android.permission.INTERNET" >
88+ </service >
89+
90+ </application >
91+
92+
7793</manifest >
0 commit comments