Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 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.example.wallpaperdemo"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6.  
  7. <uses-sdk
  8. android:minSdkVersion="8"
  9. android:targetSdkVersion="18" />
  10.  
  11. <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
  12. <uses-permission android:name="android.permission.SET_WALLPAPER" />
  13. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
  14. <application
  15. android:allowBackup="true"
  16. android:icon="@drawable/ic_launcher"
  17. android:label="@string/app_name"
  18. android:theme="@style/AppTheme" >
  19. <activity
  20. android:name="com.example.wallpaperdemo.MainActivity"
  21. android:label="@string/app_name" >
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24.  
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. </intent-filter>
  27. </activity>
  28.  
  29. <receiver
  30. android:name=".BootReceiver"
  31. android:enabled="true"
  32. android:exported="true"
  33. android:label="BootReceiver" >
  34. <intent-filter>
  35. <action android:name="android.intent.action.BOOT_COMPLETED" >
  36. </action>
  37. </intent-filter>
  38. </receiver>
  39. </application>
  40.  
  41. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement