Skip to content

Commit ba7df60

Browse files
committed
feat: 버전, 기타 등등 수정
1 parent 718aa4a commit ba7df60

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

app/build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ plugins {
1212
}
1313

1414
java {
15-
sourceCompatibility = JavaVersion.VERSION_17
16-
targetCompatibility = JavaVersion.VERSION_17
15+
sourceCompatibility = JavaVersion.VERSION_21
16+
targetCompatibility = JavaVersion.VERSION_21
1717
}
1818

1919
kotlin {
20-
jvmToolchain(17)
20+
jvmToolchain(21)
2121
}
2222

2323
secrets {
@@ -31,7 +31,7 @@ val secretProperties = Properties().apply {
3131

3232
android {
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 {

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
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

1111
buildscript {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sat Dec 16 20:36:39 KST 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=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
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

widget/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

widget/src/main/java/com/no5ing/bbibbi/widget/WidgetImageWorker.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)