Created
May 29, 2023 17:13
-
-
Save hpkaushik121/abafbbe4a92346341f0dc96b7c2d6afd 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
// app/build.gradle | |
dependencies { | |
// ... other dependencies | |
implementation project(':module1') | |
implementation project(':module2') | |
} | |
// Define module priorities | |
evaluationDependsOn(':module1') | |
evaluationDependsOn(':module2') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment