I have a style defined in style.xml in a package.
Can that style be used in a different package programmetically like
textView.setTextAppearance(R.style.style_from_different_package)
I am trying this but receiving symbol not found error.
I have a style defined in style.xml in a package.
Can that style be used in a different package programmetically like
textView.setTextAppearance(R.style.style_from_different_package)
I am trying this but receiving symbol not found error.
Copyright © 2021 Jogjafile Inc.
If it's a different module u can include the module in "settings.gradle" and add implementation project(path: ':module-name') in app gradle file.