2012-01-25 18:30:33 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.heeroyui.ednpackage"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2012-01-25 23:32:14 +01:00
|
|
|
<application android:label="Edn"
|
|
|
|
android:icon="@drawable/ic_luncher_edn">
|
2012-01-25 18:30:33 +01:00
|
|
|
<!--android:hasCode="false"-->
|
|
|
|
<!-- classpath-->
|
|
|
|
<activity android:name=".edn"
|
|
|
|
android:label="Edn Text-Editor"
|
2012-01-27 02:04:02 +01:00
|
|
|
android:icon="@drawable/ic_luncher_edn"
|
|
|
|
android:configChanges="orientation">
|
2012-01-25 18:30:33 +01:00
|
|
|
<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" />
|
2012-02-23 22:34:12 +01:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2012-01-25 18:30:33 +01:00
|
|
|
</manifest>
|