Update dependencies across modules

This commit is contained in:
Hamidreza Bayat
2020-03-27 02:56:39 +04:30
parent c1fc2e57fb
commit 16b57176b6
5 changed files with 15 additions and 15 deletions

View File

@@ -43,9 +43,9 @@ android {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
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 project(':CuckooChessEngine')
}