Skip to content

Instantly share code, notes, and snippets.

@runningcode
Created July 29, 2020 17:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runningcode/654049e6e3fad9fe3f5ae0b022975820 to your computer and use it in GitHub Desktop.
Save runningcode/654049e6e3fad9fe3f5ae0b022975820 to your computer and use it in GitHub Desktop.
Print out Android Studio Injected properties
project.properties.forEach { key, value ->
if (key.startsWith('android.injected')) {
println("$key:$value")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment