Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find androidx.navigation:navigation-compose:

I copied the dependencies mentioned in the website here: https://developer.android.com/guide/navigation/navigation-getting-started#kts to use Navigation Component. However, when i run the project, it says it could not find androidx.navigation:navigation-compose:. I've tried included $nav_version which is = 2.3.5, but the problem remains. Is there anything I missed out?

Screenshot without $nav_version: enter image description here

Screenshot with $nav_version: enter image description here

like image 671
AhChing11 Avatar asked Sep 18 '25 13:09

AhChing11


1 Answers

Navigation Compose was introduced after Navigation 2.3 - you need to use Navigation 2.4 (latest at this time is 2.4.0-rc01):

implementation "androidx.navigation:navigation-compose:2.4.0-rc01"
like image 166
ianhanniballake Avatar answered Sep 20 '25 02:09

ianhanniballake