/paw/AndroidManifest.xml
http://eyes-free.googlecode.com/ · XML · 73 lines · 63 code · 9 blank · 1 comment · 0 complexity · c7ac4644b12aeeb49e9b48f898d46c12 MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.google.marvin.paw"
- android:versionCode="1"
- android:versionName="1.0">
- <uses-sdk android:minSdkVersion="3" />
- <uses-permission xmlns:android="http://schemas.android.com/apk/res/android" android:name="android.permission.VIBRATE"/>
- <uses-permission android:name="android.permission.INTERNET"/>
-
- <application android:icon="@drawable/icon" android:label="@string/app_name">
- <!-- Broadcast Receiver that will process AppWidget updates -->
- <receiver android:name=".WidgetInterface" android:label="Pet Android Widget">
- <intent-filter>
- <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.google.marvin.paw.idle" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.google.marvin.paw.dance" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.google.marvin.paw.dizzy" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.google.marvin.paw.talk" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.google.marvin.paw.sleep" />
- </intent-filter>
- <intent-filter>
- <action android:name="com.google.marvin.paw.action.websearch" />
- </intent-filter>
- <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_2x2" />
- </receiver>
-
- <service android:name=".WidgetInterface$UpdateService">
- <intent-filter>
- <action android:name="com.google.marvin.paw.update" />
- </intent-filter>
- </service>
-
- <service android:name=".WidgetService">
- <intent-filter>
- <action android:name="com.google.marvin.paw.runWidget" />
- </intent-filter>
- </service>
-
- <activity android:name=".WidgetGlueActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar">
- <intent-filter>
- <action android:name="com.google.marvin.paw.startService" />
- <category android:name="android.intent.category.DEFAULT"/>
- </intent-filter>
- </activity>
-
- <activity android:name=".RecoInvokerActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar">
- <intent-filter>
- <action android:name="com.google.marvin.paw.doReco" />
- <category android:name="android.intent.category.DEFAULT"/>
- </intent-filter>
- </activity>
-
- <activity android:name=".BagelActivity" android:label="@string/app_name" android:theme="@android:style/Theme.Translucent.NoTitleBar">
- <intent-filter>
- <action android:name="com.google.marvin.paw.doSynth" />
- <category android:name="android.intent.category.DEFAULT"/>
- </intent-filter>
- </activity>
- </application>
- </manifest>