Skip to content

Instantly share code, notes, and snippets.

@figonzal1
Created June 20, 2022 20:28
Show Gist options
  • Save figonzal1/15fe6d40d33220f2f9d0f3221aa1d5b9 to your computer and use it in GitHub Desktop.
Save figonzal1/15fe6d40d33220f2f9d0f3221aa1d5b9 to your computer and use it in GitHub Desktop.
//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