Home | History | Annotate | Download | only in basicProjectWithAidl
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3       android:versionCode="1"
      4       android:versionName="1.0" package="com.android.tests.basicprojectwithaidl">
      5     <application android:label="@string/app_name" android:icon="@drawable/icon">
      6         <activity android:name="com.android.tests.basicprojectwithaidlwithaidl.Main"
      7                   android:label="@string/app_name">
      8             <intent-filter>
      9                 <action android:name="android.intent.action.MAIN" />
     10                 <category android:name="android.intent.category.LAUNCHER" />
     11             </intent-filter>
     12         </activity>
     13     </application>
     14     <uses-sdk android:minSdkVersion="AOSP"/>
     15 </manifest>
     16