-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
52 lines (45 loc) · 2.41 KB
/
AndroidManifest.xml
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.broodplank.instavolt"
android:versionCode="1"
android:versionName="1.0" android:installLocation="internalOnly" >
<uses-sdk android:minSdkVersion="8" android:maxSdkVersion="17" android:targetSdkVersion="17"/>
<permission android:name="MODE_WORLD_READABLE" />
<permission android:name="MODE_WORLD_WRITEABLE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" android:allowBackup="true">
<activity
android:name="com.broodplank.instavolt.mainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
</intent-filter>
</activity>
<activity android:name="MIN" android:label="@string/cpu_volt_min_title"
android:parentActivityName="com.broodplank.instavolt">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
</intent-filter>
</activity>
<activity android:name="PLUS" android:label="@string/cpu_volt_max_title"
android:parentActivityName="com.broodplank.instavolt">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
</intent-filter>
</activity>
<activity android:name="CHECK" android:label="@string/cpu_check_volt"
android:parentActivityName="com.broodplank.instavolt">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>