blob: c51696be697fdd1028c03a7467367992ea432f2a [file] [log] [blame]
Xavier Ducrohet6c4f5c52012-02-29 15:54:36 -08001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Xavier Ducrohet35803ee2012-03-02 13:57:08 -08003 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" >
Xavier Ducrohet6c4f5c52012-02-29 15:54:36 -080013 <intent-filter>
14 <action android:name="android.intent.action.MAIN" />
Xavier Ducrohet35803ee2012-03-02 13:57:08 -080015
Xavier Ducrohet6c4f5c52012-02-29 15:54:36 -080016 <category android:name="android.intent.category.LAUNCHER" />
17 </intent-filter>
18 </activity>
19 </application>
Xavier Ducrohet35803ee2012-03-02 13:57:08 -080020
21</manifest>