/FallingSandpaper/AndroidManifest.xml

http://thelements.googlecode.com/ · XML · 45 lines · 27 code · 6 blank · 12 comment · 0 complexity · e9834ceae089fe44a4f906aff122eb78 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. /* ** ** Copyright 2009, The Android Open Source Project ** **
  4. Licensed under the Apache License, Version 2.0 (the "License"); ** you
  5. may not use this file except in compliance with the License. ** You
  6. may obtain a copy of the License at ** **
  7. http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by
  8. applicable law or agreed to in writing, software ** distributed under
  9. the License is distributed on an "AS IS" BASIS, ** WITHOUT WARRANTIES
  10. OR CONDITIONS OF ANY KIND, either express or implied. ** See the
  11. License for the specific language governing permissions and **
  12. limitations under the License. */
  13. -->
  14. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  15. package="sand.wallpaper.opengl" android:versionName="1.10" android:versionCode="45">
  16. <uses-sdk android:minSdkVersion="7" />
  17. <uses-feature android:name="android.software.live_wallpaper" />
  18. <application
  19. android:label="@string/app_name"
  20. android:icon="@drawable/icon">
  21. <service
  22. android:label="@string/app_name"
  23. android:name=".DemoActivity"
  24. android:permission="android.permission.BIND_WALLPAPER">
  25. <intent-filter>
  26. <action android:name="android.service.wallpaper.WallpaperService" />
  27. </intent-filter>
  28. <meta-data android:name="android.service.wallpaper" android:resource="@layout/ui" />
  29. </service>
  30. <activity
  31. android:name=".Preferences"
  32. android:label="@string/app_name">
  33. <intent-filter>
  34. <action android:name="android.intent.action.MAIN" />
  35. <category android:name="android.intent.category.LAUNCHER" />
  36. </intent-filter>
  37. </activity>
  38. </application>
  39. </manifest>