Created
April 4, 2024 06:01
-
-
Save imandaliya/a33ae6b7550b48c4057de0c7f9398716 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# refrence from https://stackoverflow.com/questions/76439814/android-using-new-version-catalog-to-add-local-modules | |
# settings.gradle | |
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") | |
rootProject.name = "MyApplication" | |
include(":app") | |
include(":library_module") | |
# build.gradle of project where you add | |
dependencies { | |
implementation(projects.libraryModule) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment