Advertisement
Guest User

Untitled

a guest
Sep 7th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.fainosag.stickygrandpa.android"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6.  
  7. <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="20" />
  8. <uses-feature android:name ="android:software.live_wallpaper" android:required="false"/>
  9. <uses-permission android:name="android.permission.INTERNET"></uses-permission>
  10. <uses-permission android:name="android.permission.access_network_state"></uses-permission>
  11.  
  12. <application
  13. android:allowBackup="true"
  14. android:icon="@drawable/ic_launcher"
  15. android:label="@string/app_name"
  16. android:theme="@style/GdxTheme" >
  17. <meta-data android:name="com.google.android.gms.version"
  18. android:value="@integer/google_play_services_version" />
  19. <service android:name =".LiveWallpaperService"
  20. android:label = "@string/app_name"
  21. android:icon = "@drawable/ic_launcher"
  22. android:permission = "android.permission.BIND_WALLPAPER" >
  23. <intent-filter>
  24. <action android:name="android.service.wallpaper.WallpaperService" />
  25. </intent-filter>
  26. <meta-data android:name ="android.service.wallpaper"
  27. android:resource ="@xml/livewallpaper" />
  28. </service>
  29. <activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
  30. android:theme="@android:style/Theme.Translucent" />/>
  31. <activity
  32. android:name="com.fainosag.stickygrandpa.android.AndroidLauncher"
  33. android:label="@string/app_name"
  34. android:screenOrientation="portrait"
  35. android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
  36. <intent-filter>
  37. <action android:name="android.intent.action.MAIN" />
  38. <category android:name="android.intent.category.LAUNCHER" />
  39. </intent-filter>
  40. </activity>
  41. </application>
  42.  
  43. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement