Skip to content

Instantly share code, notes, and snippets.

@AdiD253
Created November 2, 2018 12:19
Show Gist options
  • Save AdiD253/dedbbc039fd65409f6a715fc48cc35e9 to your computer and use it in GitHub Desktop.
Save AdiD253/dedbbc039fd65409f6a715fc48cc35e9 to your computer and use it in GitHub Desktop.
android {
(...)
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keyStoreProperties = new Properties()
keyStoreProperties.load(new FileInputStream(keystorePropertiesFile))
defaultConfig {
(...)
buildConfigField("String", "SECRET_TOKEN", keyStoreProperties["SECRET_TOKEN"])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment