aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/exportreceiver4.xml
blob: 5d9a8262994eff5ffb271c3d0025cc48aa5c19ee (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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="foo.bar2"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="14" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <receiver
            android:label="@string/app_name"
            android:name="com.sample.service.serviceClass"
            android:process=":remote" >
            <intent-filter >
                <action android:name="com.sample.service.serviceClass" >
                </action>
            </intent-filter>
        </receiver>
    </application>

</manifest>