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