Created
June 20, 2022 20:28
-
-
Save figonzal1/15fe6d40d33220f2f9d0f3221aa1d5b9 to your computer and use it in GitHub Desktop.
This file contains 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
//Version GROOVY | |
defaultConfig { | |
applicationId "com.myapp" | |
minSdkVersion 23 | |
targetSdkVersion 31 | |
versionCode 32 | |
versionName "1.0" | |
} | |
//VERSION DSL | |
defaultConfig { | |
applicationId = "com.myapp" | |
minSdk = 23 | |
targetSdk = 31 | |
versionCode = 32 | |
versionName = "1.0" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment