Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into feature/issue-005-…
Browse files Browse the repository at this point in the history
…debug-package
  • Loading branch information
jihee-dev committed Dec 14, 2022
2 parents 85b0bbf + 27fd25f commit fb2b4c9
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 13 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 20th-Android-Team-1-FE 플랜즈
# 정말 편리한 약속잡기, 관리 서비스 플랜즈

![screen1](https://user-images.githubusercontent.com/33443660/183038971-0e87d601-16d9-485a-857e-031ae9fa285e.png)

Expand Down Expand Up @@ -43,3 +43,8 @@
![image](https://user-images.githubusercontent.com/33443660/183053485-631a62f7-1422-479b-88d5-5a1860472a13.png)<br>
- 100 % Jetpack Compose
- Coroutines

<br>

## 저희는 [YAPP](https://www.yapp.co.kr) Android 1팀에서 시작된 프로젝트예요!
🙋‍♀️ 출시까지의 Android 파트 여정이 궁금하신 분들은 [여기](https://github.com/YAPP-Github/20th-Android-Team-1-FE)로 오시면 보실 수 있을 거예요! :)
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath(ProjectDependencies.ANDROID_BUILD_TOOL)
classpath(ProjectDependencies.ANDROID_GRADLE_PLUGIN)
classpath(ProjectDependencies.KOTLIN_GRADLE_PLUGIN)
classpath(ProjectDependencies.HILT_GRADLE_PLUGIN)
classpath(ProjectDependencies.FIREBASE_CRASHLYTICS)
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/ProjectDependencies.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object ProjectDependencies {
const val ANDROID_BUILD_TOOL = "com.android.tools.build:gradle:${Versions.ANDROID_BUILD_TOOL}"
const val ANDROID_GRADLE_PLUGIN = "com.android.tools.build:gradle:${Versions.ANDROID_GRADLE_PLUGIN}"
const val KOTLIN_GRADLE_PLUGIN = "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.KOTLIN}"
const val HILT_GRADLE_PLUGIN = "com.google.dagger:hilt-android-gradle-plugin:${Versions.HILT}"
const val GOOGLE_SERVICE = "com.google.gms:google-services:${Versions.GOOGLE_SERVICE}"
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ object Versions {
const val ACCOMPANIST_PAGER = "0.24.12-rc"
const val ACCOMPANIST_SYSTEM_UI_CONTROLLER = "0.24.12-rc"
const val ANDROID_APP_COMPAT = "1.4.1"
const val ANDROID_BUILD_TOOL = "7.2.1"
const val ANDROID_GRADLE_PLUGIN = "7.3.1"
const val ANDROID_CORE = "1.7.0"
const val COIL = "1.4.0"
const val COMPOSE = "1.2.0"
Expand All @@ -13,7 +13,7 @@ object Versions {
const val COMPOSE_NAVIGATION = "2.5.0"
const val FIREBASE_BOM = "30.3.1"
const val FIREBASE_CRASHLYTICS = "2.9.1"
const val GOOGLE_SERVICE = "4.3.10"
const val GOOGLE_SERVICE = "4.3.14"
const val HILT = "2.42"
const val HILT_ANDROID = "1.0.0-beta01"
const val JUNIT = "4.13.2"
Expand Down
5 changes: 0 additions & 5 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,10 @@ plugins {

android {
compileSdk = Configs.COMPILE_SDK

defaultConfig {
minSdk = Configs.MIN_SDK
targetSdk = Configs.TARGET_SDK
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ inline fun <T, R> NetworkResult<T>.mapCatching(transform: (T) -> R): NetworkResu
is NetworkResult.Loading -> NetworkResult.Loading
}

inline fun <T, R> NetworkResult<T>.zip(other: R): NetworkResult<Pair<T, R>> =
fun <T, R> NetworkResult<T>.zip(other: R): NetworkResult<Pair<T, R>> =
when (this) {
is NetworkResult.Success -> NetworkResult.Success(data to other)
is NetworkResult.Error -> NetworkResult.Error(this.exception)
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon May 16 22:48:54 KST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
1 change: 0 additions & 1 deletion presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ android {
defaultConfig {
minSdk = Configs.MIN_SDK
targetSdk = Configs.TARGET_SDK

vectorDrawables {
useSupportLibrary = true
}
Expand Down

0 comments on commit fb2b4c9

Please sign in to comment.