ewolDrawer/AndroidManifest.xml

20 lines
731 B
XML
Raw Normal View History

2011-12-13 14:29:06 +01:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2011-12-14 14:09:55 +01:00
package="com.heeroyui.ewoldrawerpackage"
2011-12-13 14:29:06 +01:00
android:versionCode="1"
android:versionName="1.0">
2011-12-14 14:17:22 +01:00
<application android:label="Ewol Drawer">
2011-12-13 14:29:06 +01:00
<!--android:hasCode="false"-->
2011-12-14 13:58:01 +01:00
<!-- classpath-->
2011-12-14 14:09:55 +01:00
<activity android:name=".ewoldrawer"
android:label="Ewol Drawer"
2011-12-13 14:29:06 +01:00
android:icon="@drawable/ic_luncher_ewoltest">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4" />
</manifest>