Target API 31 (#6190)

This commit is contained in:
ByteHamster 2022-11-26 16:06:02 +01:00 committed by GitHub
parent d585e37e11
commit 807e09ecdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 6 deletions

View File

@ -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"

View File

@ -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

View File

@ -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'

View File

@ -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