summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
blob: f8a512ae640335e329ef375ea7f51917c020bbe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.android.protips"
     android:versionCode="1"
     android:versionName="1.0">

    <uses-sdk android:minSdkVersion="3"/>
    <application android:label="@string/widget_name"
         android:icon="@drawable/icon">
        <receiver android:name=".ProtipWidget"
             android:label="@string/widget_name"
             android:exported="true">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
                <action android:name="com.android.protips.NEXT_TIP"/>
                <action android:name="com.android.protips.HEE_HEE"/>
            </intent-filter>
            <intent-filter>
                <action android:name="android.provider.Telephony.SECRET_CODE"/>
                <data android:scheme="android_secret_code"
                     android:host="8477"/>
            </intent-filter>
            <meta-data android:name="android.appwidget.provider"
                 android:resource="@xml/widget_build"/>
        </receiver>
    </application>
</manifest>