/paw/AndroidManifest.xml

http://eyes-free.googlecode.com/ · XML · 73 lines · 63 code · 9 blank · 1 comment · 0 complexity · c7ac4644b12aeeb49e9b48f898d46c12 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.google.marvin.paw"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <uses-sdk android:minSdkVersion="3" />
  7. <uses-permission xmlns:android="http://schemas.android.com/apk/res/android" android:name="android.permission.VIBRATE"/>
  8. <uses-permission android:name="android.permission.INTERNET"/>
  9. <application android:icon="@drawable/icon" android:label="@string/app_name">
  10. <!-- Broadcast Receiver that will process AppWidget updates -->
  11. <receiver android:name=".WidgetInterface" android:label="Pet Android Widget">
  12. <intent-filter>
  13. <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
  14. </intent-filter>
  15. <intent-filter>
  16. <action android:name="com.google.marvin.paw.idle" />
  17. </intent-filter>
  18. <intent-filter>
  19. <action android:name="com.google.marvin.paw.dance" />
  20. </intent-filter>
  21. <intent-filter>
  22. <action android:name="com.google.marvin.paw.dizzy" />
  23. </intent-filter>
  24. <intent-filter>
  25. <action android:name="com.google.marvin.paw.talk" />
  26. </intent-filter>
  27. <intent-filter>
  28. <action android:name="com.google.marvin.paw.sleep" />
  29. </intent-filter>
  30. <intent-filter>
  31. <action android:name="com.google.marvin.paw.action.websearch" />
  32. </intent-filter>
  33. <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_2x2" />
  34. </receiver>
  35. <service android:name=".WidgetInterface$UpdateService">
  36. <intent-filter>
  37. <action android:name="com.google.marvin.paw.update" />
  38. </intent-filter>
  39. </service>
  40. <service android:name=".WidgetService">
  41. <intent-filter>
  42. <action android:name="com.google.marvin.paw.runWidget" />
  43. </intent-filter>
  44. </service>
  45. <activity android:name=".WidgetGlueActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar">
  46. <intent-filter>
  47. <action android:name="com.google.marvin.paw.startService" />
  48. <category android:name="android.intent.category.DEFAULT"/>
  49. </intent-filter>
  50. </activity>
  51. <activity android:name=".RecoInvokerActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar">
  52. <intent-filter>
  53. <action android:name="com.google.marvin.paw.doReco" />
  54. <category android:name="android.intent.category.DEFAULT"/>
  55. </intent-filter>
  56. </activity>
  57. <activity android:name=".BagelActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar">
  58. <intent-filter>
  59. <action android:name="com.google.marvin.paw.doSynth" />
  60. <category android:name="android.intent.category.DEFAULT"/>
  61. </intent-filter>
  62. </activity>
  63. </application>
  64. </manifest>