When I try to add Safe Args (Android Navigation) to my app's as following
( using this guide : https://developer.android.com/topic/libraries/architecture/navigation/navigation-pass-data ) :
apply plugin: 'com.android.application' apply plugin: 'androidx.navigation.safeargs' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' apply plugin: 'com.google.gms.google-services' android {...
I receive this error :
Plugin with id 'androidx.navigation.safeargs' not found.
Navigation is a framework for navigating between 'destinations' within an Android application that provides a consistent API whether destinations are implemented as Fragments, Activities, or other components. Latest Update. Stable Release. Release Candidate. Beta Release.
It is located in the root project directory and its main function is to define the build configurations that will be applied to all the modules in the project.
To add androidx.navigation.safeargs
plugin follow below step's
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0-alpha09"
(latest) Add above to your Project Gradel file inside dependency block
Then add apply plugin: 'androidx.navigation.safeargs'
to your app/Module gradle file
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With