diff --git a/core/designsystem/build.gradle.kts b/core/designsystem/build.gradle.kts index 5b14c38d..05b620ea 100644 --- a/core/designsystem/build.gradle.kts +++ b/core/designsystem/build.gradle.kts @@ -19,7 +19,7 @@ android { isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" + "proguard-rules.pro", ) } } @@ -40,4 +40,4 @@ dependencies { testImplementation(libs.junit) androidTestImplementation(libs.androidx.junit) androidTestImplementation(libs.espresso.core) -} \ No newline at end of file +} diff --git a/core/network/build.gradle.kts b/core/network/build.gradle.kts index 556e5621..5d35cbdf 100644 --- a/core/network/build.gradle.kts +++ b/core/network/build.gradle.kts @@ -19,7 +19,7 @@ android { isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" + "proguard-rules.pro", ) } } @@ -40,4 +40,4 @@ dependencies { testImplementation(libs.junit) androidTestImplementation(libs.androidx.junit) androidTestImplementation(libs.espresso.core) -} \ No newline at end of file +} diff --git a/core/ui/build.gradle.kts b/core/ui/build.gradle.kts index d10cccd3..c8b57203 100644 --- a/core/ui/build.gradle.kts +++ b/core/ui/build.gradle.kts @@ -19,7 +19,7 @@ android { isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" + "proguard-rules.pro", ) } } @@ -40,4 +40,4 @@ dependencies { testImplementation(libs.junit) androidTestImplementation(libs.androidx.junit) androidTestImplementation(libs.espresso.core) -} \ No newline at end of file +} diff --git a/data/auth/build.gradle.kts b/data/auth/build.gradle.kts index 9599b139..9c21df2c 100644 --- a/data/auth/build.gradle.kts +++ b/data/auth/build.gradle.kts @@ -19,7 +19,7 @@ android { isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" + "proguard-rules.pro", ) } } diff --git a/domain/auth/build.gradle.kts b/domain/auth/build.gradle.kts index 83b4de09..e094d8d3 100644 --- a/domain/auth/build.gradle.kts +++ b/domain/auth/build.gradle.kts @@ -6,4 +6,4 @@ plugins { java { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 -} \ No newline at end of file +} diff --git a/domain/auth/src/main/java/com/boostcamp/mapisode/auth/AuthModel.kt b/domain/auth/src/main/java/com/boostcamp/mapisode/auth/AuthModel.kt index ca82454e..7f2b17fc 100644 --- a/domain/auth/src/main/java/com/boostcamp/mapisode/auth/AuthModel.kt +++ b/domain/auth/src/main/java/com/boostcamp/mapisode/auth/AuthModel.kt @@ -1,4 +1,5 @@ package com.boostcamp.mapisode.auth class AuthModel { -} \ No newline at end of file + val accessToken: String = "" +} diff --git a/feature/home/build.gradle.kts b/feature/home/build.gradle.kts index be06fb90..1297faaf 100644 --- a/feature/home/build.gradle.kts +++ b/feature/home/build.gradle.kts @@ -19,7 +19,7 @@ android { isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), - "proguard-rules.pro" + "proguard-rules.pro", ) } } @@ -40,4 +40,4 @@ dependencies { testImplementation(libs.junit) androidTestImplementation(libs.androidx.junit) androidTestImplementation(libs.espresso.core) -} \ No newline at end of file +}