Home | History | Annotate | Download | only in basicLibWithJar
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3       package="com.android.tests.basiclibwithjar"
      4       android:versionCode="1"
      5       android:versionName="1.0">
      6     <application android:icon="@drawable/icon" android:label="@string/basicLibWithJar_name">
      7         <activity android:name="Main" android:label="@string/basicLibWithJar_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