Skip to content

Commit 591be86

Browse files
authored
Merge pull request #258 from TeamPINGLE/chore-2.0.2
[chore] 2.0.2 업데이트
2 parents 6d5e913 + 74ca8d1 commit 591be86

File tree

11 files changed

+39
-38
lines changed

11 files changed

+39
-38
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import java.util.Properties
32

43
plugins {
@@ -20,14 +19,14 @@ val properties = Properties().apply {
2019

2120
android {
2221
namespace = "org.sopt.pingle"
23-
compileSdk = 34
22+
compileSdk = 35
2423

2524
defaultConfig {
2625
applicationId = "org.sopt.pingle"
2726
minSdk = 28
28-
targetSdk = 34
29-
versionCode = 18
30-
versionName = "2.0.1"
27+
targetSdk = 35
28+
versionCode = 19
29+
versionName = "2.0.2"
3130

3231
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
3332
buildConfigField(

app/src/main/java/org/sopt/pingle/data/interceptor/AuthInterceptor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class AuthInterceptor @Inject constructor(
3131
CODE_TOKEN_EXPIRE -> {
3232
response.close()
3333
val refreshTokenRequest = originalRequest.newBuilder().get()
34-
.url("${BuildConfig.BASE_URL}/v1/auth/reissue")
34+
.url("${BuildConfig.BASE_URL}v1/auth/reissue")
3535
.post("".toRequestBody(null))
3636
.addHeader(AUTHORIZATION, localStorage.refreshToken)
3737
.build()

app/src/main/java/org/sopt/pingle/data/service/AuthService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import retrofit2.http.POST
1414
interface AuthService {
1515
@POST("$VERSION/$AUTH/$LOGIN")
1616
suspend fun postLogin(
17-
@Header("$X_PROVIDER_TOKEN") header: String,
17+
@Header(X_PROVIDER_TOKEN) header: String,
1818
@Body body: RequestAuthDto
1919
): BaseResponse<ResponseAuthDto>
2020

app/src/main/java/org/sopt/pingle/data/service/MapService.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ import retrofit2.http.Query
1010
interface MapService {
1111
@GET("$VERSION/$TEAMS/{$TEAM_ID}/$PINS")
1212
suspend fun getPinListWithoutFiltering(
13-
@Path("$TEAM_ID") teamId: Long,
13+
@Path(TEAM_ID) teamId: Long,
1414
@Query(CATEGORY) category: String?,
1515
@Query(SEARCH_WORD) searchWord: String?
1616
): BaseResponse<List<ResponsePinDto>>
1717

1818
@GET("$VERSION/$TEAMS/{$TEAM_ID}/$PINS/{$PIN_ID}/$MEETINGS")
1919
suspend fun getMapPingleList(
20-
@Path("$TEAM_ID") teamId: Long,
21-
@Path("$PIN_ID") pinId: Long,
20+
@Path(TEAM_ID) teamId: Long,
21+
@Path(PIN_ID) pinId: Long,
2222
@Query(CATEGORY) category: String?
2323
): BaseResponse<List<ResponsePingleDto>>
2424

gradle/libs.versions.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
[versions]
22

33
# Gradle
4-
agp = "8.1.3"
5-
kotlin = "1.9.10"
4+
agp = "8.7.3"
5+
kotlin = "1.9.23"
66

77
# AndroidX
8-
core-ktx = "1.12.0"
9-
appcompat = "1.6.1"
10-
constraintlayout = "2.1.4"
11-
activity = "1.8.2"
12-
fragment = "1.6.2"
13-
lifecycle = "2.7.0"
8+
core-ktx = "1.15.0"
9+
appcompat = "1.7.0"
10+
constraintlayout = "2.2.0"
11+
activity = "1.9.3"
12+
fragment = "1.8.5"
13+
lifecycle = "2.8.7"
1414
security = "1.1.0-alpha06"
1515
splash = "1.0.1"
1616

1717
# Google
18-
material = "1.11.0"
19-
google-services = "4.4.1"
20-
firebase-crashlytics = "2.9.9"
21-
firebase-bom = "32.7.4"
18+
material = "1.12.0"
19+
google-services = "4.4.2"
20+
firebase-crashlytics = "3.0.2"
21+
firebase-bom = "33.7.0"
2222

2323
# Test
2424
junit = "4.13.2"
25-
androidx-test-ext-junit = "1.1.5"
26-
espresso-core = "3.5.1"
25+
androidx-test-ext-junit = "1.2.1"
26+
espresso-core = "3.6.1"
2727

2828
# Dagger-Hilt
29-
dagger-hilt = "2.50"
29+
dagger-hilt = "2.52"
3030

3131
# Third Party
3232
ktlint = "11.5.1"
33-
coil = "2.4.0"
33+
coil = "2.6.0"
3434
timber = "5.0.1"
3535
okhttp = "4.11.0"
3636
retrofit = "2.9.0"
3737
retrofit-kotlin-serialization-converter = "1.0.0"
3838
kotlin-serialization-json = "1.5.1"
3939
sentry = "4.1.1"
4040
naver-maps = "3.17.0"
41-
play-services-location = "21.2.0"
41+
play-services-location = "21.3.0"
4242
progress-bar = "1.1.3"
43-
kakao = "2.15.0"
43+
kakao = "2.20.3"
4444
amplitude = "1.+"
4545

4646
[libraries]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Dec 26 20:31:57 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.9-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)