Home | History | Annotate | Download | only in basicProjectWithJava
      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.basicProjectWithJava">
      5     <uses-sdk android:minSdkVersion="AOSP" />
      6 
      7     <application android:icon="@drawable/icon" android:label="@string/app_name">
      8         <activity android:label="@string/app_name" android:name="Main">
      9             <intent-filter>
     10                 <action android:name="android.intent.action.MAIN" />
     11                 <category android:name="android.intent.category.LAUNCHER" />
     12             </intent-filter>
     13         </activity>
     14 
     15     </application>
     16 </manifest>