Last active
May 2, 2021 20:55
-
-
Save novotnyr/02a74e78d0801cd06d74b75975264cda to your computer and use it in GitHub Desktop.
UINF/VMA - Appka Magellan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//build.gradle (Top-Level) | |
classpath 'com.google.gms:google-services:4.3.5' | |
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5" | |
//build.gradle (App) | |
plugins { | |
//... | |
id 'com.google.gms.google-services' | |
id 'androidx.navigation.safeargs.kotlin' | |
} | |
//Dependencies: | |
implementation platform('com.google.firebase:firebase-bom:27.1.0') | |
implementation 'com.google.firebase:firebase-messaging-ktx' | |
implementation 'com.google.firebase:firebase-analytics-ktx' | |
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1' | |
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1' | |
def nav_version = "2.3.5" | |
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" | |
implementation "androidx.navigation:navigation-ui-ktx:$nav_version" | |
------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment