1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.android.tests.aidl.main"
4    android:versionCode="1"
5    android:versionName="1.0" >
6
7    <application android:label="@string/app_name" >
8        <activity
9            android:name="com.android.tests.aidl.main.MyActivity"
10            android:label="@string/app_name" >
11            <intent-filter>
12                <action android:name="android.intent.action.MAIN" />
13
14                <category android:name="android.intent.category.LAUNCHER" />
15            </intent-filter>
16        </activity>
17    </application>
18
19</manifest>