mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-23 11:31:33 +01:00
20 lines
809 B
XML
20 lines
809 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest package="org.petero.cuckoochess"
|
|
android:versionCode="2"
|
|
android:versionName="1.05"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<application android:icon="@drawable/icon"
|
|
android:label="@string/app_name"
|
|
android:debuggable="false">
|
|
<activity android:name=".CuckooChess"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="Preferences" android:label="Preferences"></activity>
|
|
</application>
|
|
<uses-sdk android:minSdkVersion="3" />
|
|
</manifest>
|