blob: 148a3fc825cf79785a41f225e641bdbc85244df0 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="foo.bar2"
android:versionCode="1"
android:versionName="1.0" >
<user-sdk android:minSdkVersion="14" />
<uses-permission android:name="com.example.helloworld.permission" />
<uses-feature android:name="android.hardware.wifi" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<uses-library android:name="com.example.helloworld" />
<activity
android:label="@string/app_name"
android:name=".Foo2Activity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>