Created
June 20, 2022 20:49
-
-
Save figonzal1/f6ddb3d46cb76969ce7161a2a2a442d8 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
//CARGAR VARIABLES DESDE local.properties | |
with(gradleLocalProperties(rootDir)) { | |
buildConfigField("String", "MY_VAR", getProperty("MY_VAR")) | |
} | |
//EXCLUIR libreria desde una dependencia, ejemplo: | |
androidTestImplementation("androidx.test.espresso:espresso-contrib:3.4.0") { | |
exclude("protobuf-lite") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment