Skip to content

Commit 457e19f

Browse files
committed
Update dependencies
1 parent 9ed0b64 commit 457e19f

File tree

4 files changed

+23
-22
lines changed

4 files changed

+23
-22
lines changed

app/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ plugins {
44
}
55

66
android {
7-
compileSdk = 32
7+
compileSdk = 33
88
defaultConfig {
99
applicationId = "com.thejuki.kformmasterexample"
1010
minSdk = 19
11-
targetSdk = 32
11+
targetSdk = 33
1212
multiDexEnabled = true
1313
versionCode = 1
1414
versionName = "1.0"
@@ -39,13 +39,13 @@ android {
3939

4040
dependencies {
4141
// Androidx
42-
implementation("androidx.appcompat:appcompat:1.4.1")
43-
implementation("com.google.android.material:material:1.5.0")
42+
implementation("androidx.appcompat:appcompat:1.5.1")
43+
implementation("com.google.android.material:material:1.7.0")
4444
implementation("androidx.recyclerview:recyclerview:1.2.1")
4545
implementation("androidx.multidex:multidex:2.0.1")
4646

4747
// Google Places
48-
implementation("com.google.android.libraries.places:places:2.6.0")
48+
implementation("com.google.android.libraries.places:places:2.7.0")
4949

5050
// KFormMaster
5151
implementation(project(":form"))

app/src/main/java/com/thejuki/kformmasterexample/fragment/FormFragment.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,7 @@ class FormFragment : Fragment() {
402402
* Override the fragment's onActivityResult(), check the request code, and
403403
* let the FormPlacesAutoCompleteElement handle the result
404404
*/
405+
@Deprecated("Deprecated in Java")
405406
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
406407
if (requestCode == PlacesAutoComplete.ordinal) {
407408
val placesElement = formBuilder.getFormElement<FormPlacesAutoCompleteElement>(PlacesAutoComplete.ordinal)

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ buildscript {
55
gradlePluginPortal()
66
}
77
dependencies {
8-
classpath("com.android.tools.build:gradle:7.3.0")
9-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.20")
10-
classpath("io.deepmedia.tools:publisher:0.6.0")
11-
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.6.20")
8+
classpath("com.android.tools.build:gradle:7.3.1")
9+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.22")
10+
classpath("io.deepmedia.tools:publisher:0.7.0")
11+
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.7.20")
1212
}
1313
}
1414

form/build.gradle.kts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ plugins {
1111
}
1212

1313
android {
14-
compileSdk = 32
14+
compileSdk = 33
1515

1616
defaultConfig {
1717
minSdk = 19
18-
targetSdk = 32
18+
targetSdk = 33
1919
multiDexEnabled = true
2020
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
2121
}
@@ -82,10 +82,10 @@ tasks.dokkaHtml.configure {
8282

8383
dependencies {
8484
// Androidx
85-
implementation("androidx.appcompat:appcompat:1.4.1")
86-
implementation("com.google.android.material:material:1.5.0")
85+
implementation("androidx.appcompat:appcompat:1.5.1")
86+
implementation("com.google.android.material:material:1.7.0")
8787
implementation("androidx.recyclerview:recyclerview:1.2.1")
88-
implementation("androidx.constraintlayout:constraintlayout:2.1.3")
88+
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
8989
implementation("androidx.multidex:multidex:2.0.1")
9090

9191
// RendererRecyclerViewAdapter
@@ -97,7 +97,7 @@ dependencies {
9797
// ImagePicker
9898
api("com.github.dhaval2404:imagepicker:2.1")
9999

100-
implementation("com.github.bumptech.glide:glide:4.13.1")
100+
implementation("com.github.bumptech.glide:glide:4.14.2")
101101

102102
// Input mask
103103
api("com.github.RedMadRobot:input-mask-android:6.1.0")
@@ -116,13 +116,13 @@ dependencies {
116116

117117
// Test dependencies
118118
testImplementation("io.mockk:mockk:1.12.3")
119-
testImplementation("io.kotest:kotest-runner-junit5:5.2.3")
120-
testImplementation("io.kotest:kotest-property:5.2.3")
121-
androidTestImplementation("androidx.test:core:1.4.0")
122-
androidTestImplementation("androidx.test.ext:junit:1.1.3")
123-
androidTestImplementation("androidx.test:rules:1.4.0")
124-
androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0")
125-
androidTestImplementation("androidx.test.espresso:espresso-contrib:3.4.0")
119+
testImplementation("io.kotest:kotest-runner-junit5:5.5.4")
120+
testImplementation("io.kotest:kotest-property:5.5.4")
121+
androidTestImplementation("androidx.test:core:1.5.0")
122+
androidTestImplementation("androidx.test.ext:junit:1.1.4")
123+
androidTestImplementation("androidx.test:rules:1.5.0")
124+
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
125+
androidTestImplementation("androidx.test.espresso:espresso-contrib:3.5.0")
126126
}
127127

128128
publisher {

0 commit comments

Comments
 (0)