Skip to content
6 changes: 3 additions & 3 deletions CuckooChess/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ dependencies {
implementation project(':CuckooChessEngine')

// Required -- JUnit 4 framework
testImplementation 'junit:junit:4.13'
testImplementation 'junit:junit:4.13.2'
// Optional -- Robolectric environment
testImplementation 'androidx.test:core:1.2.0'
testImplementation 'androidx.test:core:1.4.0'
// Optional -- Mockito framework
testImplementation 'org.mockito:mockito-core:1.10.19'
testImplementation 'org.mockito:mockito-core:4.0.0'
}

sourceCompatibility = "8"
Expand Down
8 changes: 4 additions & 4 deletions CuckooChessApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ android {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.1.0'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation project(':CuckooChessEngine')
}
6 changes: 4 additions & 2 deletions CuckooChessApp/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
<application android:icon="@drawable/icon"
android:label="@string/app_name">
<activity android:name=".CuckooChess"
android:label="@string/app_name">
android:label="@string/app_name"
android:exported="true">
<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>
<activity android:name="Preferences" android:label="Preferences"
android:exported="true"></activity>
</application>
</manifest>
6 changes: 3 additions & 3 deletions CuckooChessEngine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')

// Required -- JUnit 4 framework
testImplementation 'junit:junit:4.13'
testImplementation 'junit:junit:4.13.2'
// Optional -- Robolectric environment
testImplementation 'androidx.test:core:1.2.0'
testImplementation 'androidx.test:core:1.4.0'
// Optional -- Mockito framework
testImplementation 'org.mockito:mockito-core:1.10.19'
testImplementation 'org.mockito:mockito-core:4.0.0'
}

sourceCompatibility = '8'
Expand Down
19 changes: 12 additions & 7 deletions DroidFishApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
ndkBuild {
arguments '-j8'
arguments '-j2'
}
}
}
Expand All @@ -29,6 +29,11 @@ android {
}

buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}

release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
Expand Down Expand Up @@ -59,12 +64,12 @@ android {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.1.0'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
implementation 'com.google.android.material:material:1.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation project(':CuckooChessEngine')
implementation 'com.caverock:androidsvg-aar:1.4'
}
Expand Down
13 changes: 12 additions & 1 deletion DroidFishApp/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<supports-screens android:largeScreens="true"
android:anyDensity="true" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />

Expand All @@ -18,6 +19,7 @@
<activity android:name=".DroidFish"
android:label="@string/app_name"
android:theme="@style/MainActivityTheme"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down Expand Up @@ -95,32 +97,41 @@
</activity>
<activity android:name=".activities.Preferences"
android:label="@string/preferences"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
</activity>
<activity android:name=".activities.EditBoard"
android:label="@string/edit_board"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
</activity>
<activity android:name=".activities.EditPGNLoad"
android:label="@string/load_game_title"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
</activity>
<activity android:name=".activities.EditPGNSave"
android:label="@string/save_game_title"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
</activity>
<activity android:name=".activities.LoadScid"
android:label="@string/load_scid_game_title"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
</activity>
<activity android:name=".activities.LoadFEN"
android:label="@string/load_fen_title"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
</activity>
<activity android:name=".activities.CPUWarning"
android:label="@string/cpu_warning_title">
android:label="@string/cpu_warning_title"
android:exported="true"
>
</activity>
<activity android:name=".activities.EditOptions"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize">
</activity>
<provider
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-be/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ <h3>Пераклады</h3>
<li>
Пераклад на турэцкую — Emrullah Ertürk.
</li>
<li>
Vietnamese - Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-de/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,9 @@ <h3>Lokalisierung</h3>
<li>
Die türkische Übersetzung erfolgte durch Emrullah Ertürk.
</li>
<li>
Vietnamese - Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-es/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,9 @@ <h3>Traducciones</h3>
<li>
Traducción al turco de Emrullah Ertürk.
</li>
<li>
Vietnamese - Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-fr/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ <h3>Traductions</h3>
<li>
Traduction turque par Emrullah Ertürk.
</li>
<li>
Vietnamese - Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-it/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ <h3>Traduzioni</h3>
<li>
Turkish translation by Emrullah Ertürk.
</li>
<li>
Vietnamese by Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-ko/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@ <h3>번역</h3>
<li>
터키어 번역 : Emrullah Ertürk.
</li>
<li>
Vietnamese: Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-nl/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ <h3>Vertalingen</h3>
<li>
Turkish translation by Emrullah Ertürk.
</li>
<li>
Vietnamese by Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-pl/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ <h3>Tłumaczenia</h3>
<li>
Tłumaczenie na turecki Emrullah Ertürk.
</li>
<li>
Tłumaczenie na vietnamki Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-pt/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ <h3>Traduções</h3>
<li>
Turkish translation by Emrullah Ertürk.
</li>
<li>
Vietnamese by Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-ru/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ <h3>Переводы</h3>
<li>
Перевод на турецкий язык - Emrullah Ertürk.
</li>
<li>
Vietnamese: Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-tr/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,9 @@ <h3>Çeviriler</h3>
<li>
Türkçe'ye çeviren Emrullah Ertürk.
</li>
<li>
Vietnamce'ye çeviren Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
3 changes: 3 additions & 0 deletions DroidFishApp/src/main/res/raw-uk/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ <h3>Переклади</h3>
<li>
Переклад турецькою — Emrullah Ertürk.
</li>
<li>
Vietnamese - Nguyen Duy Thanh
</li>
</ul>

</body>
Expand Down
Loading