Skip to content

Commit a4ad458

Browse files
committed
Update build.gradle
1 parent c0d3e2c commit a4ad458

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
buildscript {
44
ext {
5-
kotlin_version = '1.4.30'
5+
kotlin_version = '1.4.31'
66
}
77
ext.versions = [
8-
'compileSdk': 29,
8+
'compileSdk': 30,
99
'minSdk' : 21,
10-
'targetSdk' : 29,
10+
'targetSdk' : 30,
1111
]
1212
repositories {
1313
google()

sdk-example-kt/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ android {
1313
}
1414
buildTypes {
1515
release {
16+
signingConfig signingConfigs.debug
17+
1618
minifyEnabled false
1719
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1820
}
@@ -29,7 +31,7 @@ dependencies {
2931
implementation "androidx.appcompat:appcompat:1.2.0"
3032
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
3133

32-
testImplementation "junit:junit:4.13"
34+
testImplementation "junit:junit:4.13.2"
3335
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
3436
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
3537
}

studyplus-android-sdk/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ android {
3838
}
3939

4040
dependencies {
41-
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1'
41+
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
4242

4343
implementation "androidx.annotation:annotation:1.1.0"
4444

4545
implementation platform("com.squareup.okhttp3:okhttp-bom:4.9.1")
4646
implementation "com.squareup.okhttp3:okhttp"
4747

48-
testImplementation "junit:junit:4.13"
49-
testImplementation "org.robolectric:robolectric:4.3.1"
48+
testImplementation "junit:junit:4.13.2"
49+
testImplementation "org.robolectric:robolectric:4.5.1"
5050
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
5151
testImplementation "com.squareup.okhttp3:mockwebserver"
5252
}

0 commit comments

Comments
 (0)