summaryrefslogtreecommitdiffstats
path: root/tests/GadgetHost/AndroidManifest.xml
blob: 8da44854df150186442e0d8c388c0ccb4163a92b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.gadgethost">
    <uses-permission android:name="android.permission.VIBRATE" />

    <application>
        <activity android:name="GadgetHostActivity" android:label="_GadgetHost">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="GadgetPickActivity">
            <intent-filter>
                <action android:name="android.gadget.action.PICK_GADGET" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <receiver android:name="TestGadgetProvider">
        </receiver>
    </application>
</manifest>