Deepanshu Sharma
Deepanshu Sharma

Reputation: 93

Could not get unknown property 'navigationVersion'

I am trying to import Android jetpack libraries into my project but I am getting this error while trying to do so.

enter image description here

The code I used to implement jetpack navigation library inside "build.gradle(module:app)" file

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

Upvotes: 4

Views: 1631

Answers (1)

deadfish
deadfish

Reputation: 12304

Because You haven't defined that property. Set it in gradle.properties or change this $rootProject.navigationVersion to current version. Take a look here.

enter image description here

Upvotes: 4

Related Questions