Issue
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.
Solution
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 blockThen add
apply plugin: 'androidx.navigation.safeargs'
to your app/Module gradle file
Answered By - Anmol
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.