ewolDrawer/AndroidManifest.xml
2011-12-14 14:17:22 +01:00

20 lines
731 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.heeroyui.ewoldrawerpackage"
android:versionCode="1"
android:versionName="1.0">
<application android:label="Ewol Drawer">
<!--android:hasCode="false"-->
<!-- classpath-->
<activity android:name=".ewoldrawer"
android:label="Ewol Drawer"
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>