Skip to content

Instantly share code, notes, and snippets.

@novotnyr
Last active May 2, 2021 20:55
Show Gist options
  • Save novotnyr/02a74e78d0801cd06d74b75975264cda to your computer and use it in GitHub Desktop.
Save novotnyr/02a74e78d0801cd06d74b75975264cda to your computer and use it in GitHub Desktop.
UINF/VMA - Appka Magellan
//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