File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ plugins {
55 kotlin(" android" )
66 kotlin(" android.extensions" )
77 kotlin(" kapt" )
8+ id(" androidx.navigation.safeargs" )
89}
910
1011androidExtensions {
@@ -49,13 +50,17 @@ dependencies {
4950 // Kotlin
5051 implementation(kotlin(" stdlib-jdk7" , KotlinCompilerVersion .VERSION ))
5152
52- // Android support libraries
53+ // Androidx
5354 implementation(" androidx.appcompat:appcompat:1.1.0-alpha05" )
5455 implementation(" androidx.core:core-ktx:1.0.2" )
5556 implementation(" androidx.localbroadcastmanager:localbroadcastmanager:1.1.0-alpha01" )
5657 implementation(" androidx.recyclerview:recyclerview:1.1.0-alpha05" )
5758 implementation(" androidx.constraintlayout:constraintlayout:2.0.0-beta1" )
5859
60+ // Navigation
61+ implementation(" android.arch.navigation:navigation-fragment-ktx:1.0.0" )
62+ implementation(" android.arch.navigation:navigation-ui-ktx:1.0.0" )
63+
5964 // ReactiveX
6065 implementation(" io.reactivex.rxjava2:rxjava:2.2.6" )
6166 implementation(" io.reactivex.rxjava2:rxandroid:2.1.1" )
Original file line number Diff line number Diff line change @@ -6,14 +6,15 @@ buildscript {
66 dependencies {
77 classpath(" com.android.tools.build:gradle:3.4.1" )
88 classpath(kotlin(" gradle-plugin" , version = " 1.3.31" ))
9+ classpath(" android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0" )
910 }
1011}
1112
1213allprojects {
1314 repositories {
1415 google()
15- jcenter()
1616 maven { url = uri(" https://jitpack.io" ) }
17+ jcenter()
1718 }
1819}
1920
You can’t perform that action at this time.
0 commit comments