其他分享
首页 > 其他分享> > android-无法获取未知属性“ navigationVersion”

android-无法获取未知属性“ navigationVersion”

作者:互联网

我正在尝试将Android jetpack库导入我的项目,但是在尝试执行此操作时遇到此错误.

enter image description here

我用来在“ build.gradle(module:app)”文件中实现jetpack导航库的代码

implementation "android.arch.navigation:navigation-fragment-ktx:$rootProject.navigationVersion"
implementation "android.arch.navigation:navigation-ui-ktx:$rootProject.navigationVersion"

解决方法:

因为您尚未定义该属性.在gradle.properties中进行设置,或将此$rootProject.navigationVersion更改为当前版本.看一下here.

enter image description here

标签:android-jetpack,android-studio,android
来源: https://codeday.me/bug/20191108/2010025.html