Skip to content

Commit

Permalink
[#39] 모여런 메인 UI 구현하기
Browse files Browse the repository at this point in the history
- navigation-safe-args 적용
  • Loading branch information
heechokim committed Jul 17, 2022
1 parent 165b6a0 commit 2afb815
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
id 'com.google.gms.google-services'
id 'com.google.firebase.crashlytics'
id 'dagger.hilt.android.plugin'
id 'androidx.navigation.safeargs.kotlin'
}

android {
Expand Down Expand Up @@ -73,7 +74,6 @@ android {
dependencies {
def glide_version = '4.13.1'
def retrofit_version = '2.9.0'
def navigation_version = '2.4.2'

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
buildscript {
ext.hilt_version = '2.40.2'
ext.navigation_version = '2.5.0'

dependencies {
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
}
}

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.1.0' apply false
id 'com.android.library' version '7.1.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}

task clean(type: Delete) {
Expand Down

0 comments on commit 2afb815

Please sign in to comment.