forked from devolonter/Pretty-Painter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
27 lines (23 loc) · 1.22 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.sprite2d.apps.pp" android:installLocation="auto"
android:versionCode="15" android:versionName="1.18">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="10" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.SET_WALLPAPER"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:hardwareAccelerated="true"
android:theme="@android:style/Theme.Light">
<activity android:name=".Painter" android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation="portrait" android:configChanges="locale|keyboard|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".PainterPreferences" android:screenOrientation="portrait"
android:hardwareAccelerated="false"
android:configChanges="locale" />
</application>
</manifest>