Update dependencies(Avoid using alpha & beta versions)

This commit is contained in:
Hamidreza Bayat
2019-04-21 18:24:01 +04:30
committed by Peter Osterlund
parent d0fb56e03e
commit 6a2876f825
4 changed files with 9 additions and 9 deletions

View File

@@ -37,9 +37,9 @@ android {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.appcompat:appcompat:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation project(':CuckooChessEngine')
}