6e8fbca745
match the genesis editor version 1.3.0.653.
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.genesis"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
<original-package />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
|
|
|
|
<uses-sdk android:minSdkVersion="8"/>
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
plication android:icon="@drawable/icon" android:label="@string/app_name">
|
|
|
|
<activity android:name=".Genesis"
|
|
android:label="genesis"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
android:configChanges="orientation">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |