-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
43 lines (37 loc) · 1.65 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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.siahmsoft.soundwaper"
android:versionCode="4" android:versionName="0.4">
<uses-sdk android:minSdkVersion="7" />
<uses-feature android:name="android.software.live_wallpaper" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<service
android:label="@string/wallpaper"
android:name=".SoundcloudLiveWallpaper"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data android:name="android.service.wallpaper" android:resource="@xml/soundcloud" />
</service>
<activity
android:label="@string/wallpaper_settings"
android:name=".SoundcloudLiveWallpaperSettings"
android:theme="@android:style/Theme.Light.WallpaperSettings"
android:exported="true">
<!-- android:launchMode="singleTop"-->
</activity>
</application>
<!-- <supports-screens-->
<!-- android:largeScreens="true"-->
<!-- android:normalScreens="true"-->
<!-- android:smallScreens="false"-->
<!-- android:anyDensity="true" />-->
</manifest>