Created
July 29, 2020 17:41
-
-
Save runningcode/654049e6e3fad9fe3f5ae0b022975820 to your computer and use it in GitHub Desktop.
Print out Android Studio Injected properties
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
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