2011-11-12 20:44:02 +01:00
|
|
|
<?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>
|
2018-04-22 18:54:27 +02:00
|
|
|
<uses-sdk android:minSdkVersion="14" />
|
2011-11-12 20:44:02 +01:00
|
|
|
</manifest>
|