File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed
src/main/java/com/no5ing/bbibbi/widget Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ plugins {
1212}
1313
1414java {
15- sourceCompatibility = JavaVersion .VERSION_17
16- targetCompatibility = JavaVersion .VERSION_17
15+ sourceCompatibility = JavaVersion .VERSION_21
16+ targetCompatibility = JavaVersion .VERSION_21
1717}
1818
1919kotlin {
20- jvmToolchain(17 )
20+ jvmToolchain(21 )
2121}
2222
2323secrets {
@@ -31,7 +31,7 @@ val secretProperties = Properties().apply {
3131
3232android {
3333 namespace = " com.no5ing.bbibbi"
34- compileSdk = 34
34+ compileSdk = 35
3535
3636 signingConfigs {
3737 create(" release" ) {
@@ -45,7 +45,7 @@ android {
4545 defaultConfig {
4646 applicationId = " com.no5ing.bbibbi"
4747 minSdk = 26
48- targetSdk = 34
48+ targetSdk = 35
4949 versionCode = 11015
5050 versionName = " 1.3.1"
5151
@@ -85,7 +85,7 @@ android {
8585 buildConfig = true
8686 }
8787 composeOptions {
88- kotlinCompilerExtensionVersion = " 1.4.6 "
88+ kotlinCompilerExtensionVersion = " 1.5.10 "
8989 }
9090 packaging {
9191 resources {
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22plugins {
3- id(" com.android.application" ) version " 8.2 .1" apply false
4- id(" org.jetbrains.kotlin.android" ) version " 1.8.20 " apply false
3+ id(" com.android.application" ) version " 8.10 .1" apply false
4+ id(" org.jetbrains.kotlin.android" ) version " 1.9.22 " apply false
55 id(" com.google.gms.google-services" ) version " 4.4.0" apply false
66 id(" com.google.firebase.crashlytics" ) version " 2.9.9" apply false
7- id(" com.android.test" ) version " 8.2 .1" apply false
8- id(" com.android.library" ) version " 8.2 .1" apply false
7+ id(" com.android.test" ) version " 8.10 .1" apply false
8+ id(" com.android.library" ) version " 8.10 .1" apply false
99}
1010
1111buildscript {
Original file line number Diff line number Diff line change 11# Sat Dec 16 20:36:39 KST 2023
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
4- distributionUrl =https\://services.gradle.org/distributions/gradle-8.2 -bin.zip
4+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1 -bin.zip
55zipStoreBase =GRADLE_USER_HOME
66zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ android {
4848 buildConfig = true
4949 }
5050 composeOptions {
51- kotlinCompilerExtensionVersion = " 1.4.6 "
51+ kotlinCompilerExtensionVersion = " 1.5.10 "
5252 }
5353 compileOptions {
5454 sourceCompatibility = JavaVersion .VERSION_17
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ class WidgetImageWorker(
156156 private fun fetchDetails (): Response {
157157 val client = createOkHttpClient()
158158 val widgetRequest = Request .Builder ()
159- .url(BuildConfig .apiBaseUrl + " v1/widgets/single-recent-family-post" )
159+ .url(BuildConfig .apiBaseUrl + " / v1/widgets/single-recent-family-post" )
160160 .get()
161161 .build()
162162 val response = client.newCall(widgetRequest).execute()
You can’t perform that action at this time.
0 commit comments