Target API 31 (#6190)
This commit is contained in:
parent
d585e37e11
commit
807e09ecdd
|
@ -53,10 +53,11 @@ project.ext {
|
||||||
//Tests
|
//Tests
|
||||||
awaitilityVersion = "3.1.6"
|
awaitilityVersion = "3.1.6"
|
||||||
junitVersion = "4.13"
|
junitVersion = "4.13"
|
||||||
robolectricVersion = "4.5-alpha-1"
|
robolectricVersion = "4.9"
|
||||||
espressoVersion = "3.2.0"
|
espressoVersion = "3.5.0"
|
||||||
runnerVersion = "1.2.0"
|
runnerVersion = "1.5.0"
|
||||||
rulesVersion = "1.2.0"
|
rulesVersion = "1.5.0"
|
||||||
|
testCoreVersion = "1.5.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: "checkstyle"
|
apply plugin: "checkstyle"
|
||||||
|
|
|
@ -3,7 +3,7 @@ android {
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk 19
|
minSdk 19
|
||||||
targetSdk 30
|
targetSdk 31
|
||||||
|
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
vectorDrawables.useSupportLibrary true
|
vectorDrawables.useSupportLibrary true
|
||||||
|
|
|
@ -71,7 +71,7 @@ dependencies {
|
||||||
playApi "com.google.android.support:wearable:$wearableSupportVersion"
|
playApi "com.google.android.support:wearable:$wearableSupportVersion"
|
||||||
compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion"
|
compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion"
|
||||||
|
|
||||||
testImplementation 'androidx.test:core:1.2.0'
|
testImplementation "androidx.test:core:$testCoreVersion"
|
||||||
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
|
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
|
||||||
testImplementation "junit:junit:$junitVersion"
|
testImplementation "junit:junit:$junitVersion"
|
||||||
testImplementation 'org.mockito:mockito-inline:3.5.13'
|
testImplementation 'org.mockito:mockito-inline:3.5.13'
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
android.jetifier.blacklist=bcprov-jdk15on
|
||||||
org.gradle.jvmargs=-Xmx4096m
|
org.gradle.jvmargs=-Xmx4096m
|
||||||
|
|
Loading…
Reference in New Issue