Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ android {
}
}
namespace = "com.toyou.toyouandroid"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.toyou.toyouandroid"
minSdk = 28
targetSdk = 34
versionCode = 11
versionName = "1.1.0"
targetSdk = 35
versionCode = 12
versionName = "2.1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import timber.log.Timber

object AuthNetworkModule {

private const val BASE_URL = "https://to-you.store"
private const val BASE_URL = "https://to-you.shop"
private var retrofit: Retrofit? = null
private var accessToken: String? = null

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import retrofit2.converter.gson.GsonConverterFactory

object NetworkModule {

private const val BASE_URL = "https://to-you.store"
private const val BASE_URL = "https://to-you.shop"

private var retrofit: Retrofit? = null

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import retrofit2.Retrofit
import retrofit2.converter.gson.GsonConverterFactory

object RetrofitInstance {
private const val BASE_URL = "https://to-you.store/"
private const val BASE_URL = "https://to-you.shop"

fun getInstance() : Retrofit{
val client = OkHttpClient()
val interceptor = HttpLoggingInterceptor().setLevel(HttpLoggingInterceptor.Level.BODY)
val clientBuilder: OkHttpClient.Builder =
client.newBuilder().addInterceptor(interceptor as HttpLoggingInterceptor)
client.newBuilder().addInterceptor(interceptor)

return Retrofit.Builder().baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<string name="mypage_contact">문의하기</string>
<string name="mypage_terms_of_use">약관 및 정책</string>
<string name="mypage_version">서비스 버전</string>
<string name="mypage_version_name">1.1.0</string>
<string name="mypage_version_name">2.1.0</string>
<string name="mypage_logout">로그아웃</string>
<string name="mypage_signout">회원탈퇴</string>
<string name="home_emotion_tv">멘트</string>
Expand Down
Loading