No matching variant of androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7 was found. The consumer was configured to find a runtime of a library compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '7.4' but: My project is giving this error during sync
how to receive a bundle usring this im trying to get bundle in Destination fragment this is my code in sending fragment mNavController.navigate(R.id.action_patientMenuSearchDoctor_to_activityPatientViewDoctorProfile, bundle, null) im trying to receive it in destination (data class )
with this code you can send your Bundle into another fragment : val secondFragment =SecondFragment() val bundle = Bundle() bundle.putInt("BUNDLE_ID", noteEntity.id) noteFragment.arguments = bundle and in Second activity you can get your Bundle like this : noteId = arguments?.getInt(BUNDLE_ID) ?: 0 this code just example , and i just wanted to give you concept of passing bundle , it should work like this😊
A lady's voice in a tech tutorial. So relaxing to hear. Thank you
You're welcome 😊 thanks for your feedback 😊
I Agree, is it so relaxing or sexy or both I don't know, but it is great
I've been trying to fix missing direction classes for 1 hour and I found your video. This video fixed my issue. Thanks for your help.
happy to hear that and Glad it helped! ✨😊
you sound very young and you did great man! perfect tutorial, thank you! good luck with everything!
Thanks, you too! 🤩
just one thing 😊 I am lady not man 😊
@@AndroidGeekCo oh sorry my bad lady. cheers
no worries , it's ok 😊
Congratulations! Very good explanations! Thanks for teaching.
thank you. the trick with rebuilding project helped a lot!
Thank you for this video ! Subscribed ! I can't wait to see more from you !
Thanks for subbing! 😊
Amazing video, keep up the wonderful work 🙌🙌
glad to hear that 🤩😊🙌
Very helpful video, please keep posting 👏👏
Glad to hear that 😊, Sure 👍✨
thank you very much, you helped me a lot! even better than StackOverflow, keep it up👍
Glad to hear that you like it 😊🙏
Thanks a lot, you saved my life :)!
Glad it helped!😊
Thankss!!
Yes!
Ty for this video, how to use it with bottom navigation view
Thanks men
You're welcome!😊 ( I'm lady 🤩)
nice Thanks
Welcome 😊
No matching variant of androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7 was found. The consumer was configured to find a runtime of a library compatible with Java 11, packaged as a jar, and its dependencies declared externally, as well as attribute 'org.gradle.plugin.api-version' with value '7.4' but:
My project is giving this error during sync
thank you so much, it helped!!
You're very welcome 😊🙏🙏 glad to hear it's useful 😊
how to receive a bundle usring this im trying to get bundle in Destination fragment
this is my code in sending fragment
mNavController.navigate(R.id.action_patientMenuSearchDoctor_to_activityPatientViewDoctorProfile, bundle, null) im trying to receive it in destination (data class )
with this code you can send your Bundle into another fragment :
val secondFragment =SecondFragment()
val bundle = Bundle()
bundle.putInt("BUNDLE_ID", noteEntity.id)
noteFragment.arguments = bundle
and in Second activity you can get your Bundle like this :
noteId = arguments?.getInt(BUNDLE_ID) ?: 0
this code just example , and i just wanted to give you concept of passing bundle , it should work like this😊