Skip to content

Instantly share code, notes, and snippets.

@lordcodes
Created February 16, 2020 21:32
Show Gist options
  • Save lordcodes/07795cc179a47d9d70a49a2f8e5a7230 to your computer and use it in GitHub Desktop.
Save lordcodes/07795cc179a47d9d70a49a2f8e5a7230 to your computer and use it in GitHub Desktop.
Code for the article: "Protecting secrets in an Android project"
fun Project.propertyOrEmpty(name: String): String {
val property = findProperty(name) as String?
return property ?: environmentVariable(name)
}
fun environmentVariable(name: String) = System.getenv(name) ?: ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment