Skip to content

Instantly share code, notes, and snippets.

@imandaliya
Created April 4, 2024 06:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imandaliya/a33ae6b7550b48c4057de0c7f9398716 to your computer and use it in GitHub Desktop.
Save imandaliya/a33ae6b7550b48c4057de0c7f9398716 to your computer and use it in GitHub Desktop.
# 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