-
-
Save luongvo/93ab6c58e02d639395e9f21bbf49c83e to your computer and use it in GitHub Desktop.
Gradle / Bash - copy all env variables to app/gradle.properties (used to copy secret env vars from travis or circle CI to build android projects)
This file contains hidden or 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
#!/usr/bin/env bash | |
# | |
# Copy env variables to app module gradle properties file | |
# | |
set +x // dont print the next lines on run script | |
printenv | tr ' ' '\n' > app/gradle.properties | |
set -x |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment