Newer
Older
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto" >
<uses-sdk android:minSdkVersion="14"
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-feature android:glEsVersion="0x00010000" android:required="true" />

Christophe Geuzaine
committed
<application android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:logo="@drawable/ic_launcher"
android:allowBackup="true" >
android:label="@string/title_activity_main"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />

Christophe Geuzaine
committed
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" />
<data android:mimeType="application/zip" />
<data android:pathPattern=".*\\.zip" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="content" />
<data android:mimeType="application/zip" />

Christophe Geuzaine
committed
android:label="@string/title_activity_main"/>

Christophe Geuzaine
committed
android:label="@string/title_activity_main"/>

Christophe Geuzaine
committed
android:label="@string/title_activity_about"/>

Christophe Geuzaine
committed
android:label="@string/title_activity_main"/>

Christophe Geuzaine
committed
android:label="@string/title_activity_options">
</activity>