/paw/AndroidManifest.xml
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 10 <application android:icon="@drawable/icon" android:label="@string/app_name"> 11 12 <!-- Broadcast Receiver that will process AppWidget updates --> 13 <receiver android:name=".WidgetInterface" android:label="Pet Android Widget"> 14 <intent-filter> 15 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> 16 </intent-filter> 17 <intent-filter> 18 <action android:name="com.google.marvin.paw.idle" /> 19 </intent-filter> 20 <intent-filter> 21 <action android:name="com.google.marvin.paw.dance" /> 22 </intent-filter> 23 <intent-filter> 24 <action android:name="com.google.marvin.paw.dizzy" /> 25 </intent-filter> 26 <intent-filter> 27 <action android:name="com.google.marvin.paw.talk" /> 28 </intent-filter> 29 <intent-filter> 30 <action android:name="com.google.marvin.paw.sleep" /> 31 </intent-filter> 32 <intent-filter> 33 <action android:name="com.google.marvin.paw.action.websearch" /> 34 </intent-filter> 35 <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_2x2" /> 36 </receiver> 37 38 <service android:name=".WidgetInterface$UpdateService"> 39 <intent-filter> 40 <action android:name="com.google.marvin.paw.update" /> 41 </intent-filter> 42 </service> 43 44 <service android:name=".WidgetService"> 45 <intent-filter> 46 <action android:name="com.google.marvin.paw.runWidget" /> 47 </intent-filter> 48 </service> 49 50 <activity android:name=".WidgetGlueActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar"> 51 <intent-filter> 52 <action android:name="com.google.marvin.paw.startService" /> 53 <category android:name="android.intent.category.DEFAULT"/> 54 </intent-filter> 55 </activity> 56 57 <activity android:name=".RecoInvokerActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar"> 58 <intent-filter> 59 <action android:name="com.google.marvin.paw.doReco" /> 60 <category android:name="android.intent.category.DEFAULT"/> 61 </intent-filter> 62 </activity> 63 64 <activity android:name=".BagelActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar"> 65 <intent-filter> 66 <action android:name="com.google.marvin.paw.doSynth" /> 67 <category android:name="android.intent.category.DEFAULT"/> 68 </intent-filter> 69 </activity> 70 71 72 </application> 73</manifest>