Home | History | Annotate | Download | only in Protips
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.android.protips"
      4     android:versionCode="1"
      5     android:versionName="1.0">
      6 
      7     <uses-sdk android:minSdkVersion="3" />
      8     <application android:label="@string/widget_name"
      9             android:icon="@drawable/icon">
     10         <receiver android:name=".ProtipWidget" android:label="@string/widget_name">
     11             <intent-filter>
     12                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
     13                 <action android:name="com.android.protips.NEXT_TIP" />
     14                 <action android:name="com.android.protips.HEE_HEE" />
     15             </intent-filter>
     16             <intent-filter>
     17                 <action android:name="android.provider.Telephony.SECRET_CODE" />
     18                 <data android:scheme="android_secret_code" android:host="8477" />
     19             </intent-filter>
     20             <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_build" />
     21         </receiver>
     22     </application>
     23 </manifest>
     24