Skip to content

Instantly share code, notes, and snippets.

@legobyte
Last active September 20, 2020 03:57
Show Gist options
  • Save legobyte/d8659100750405f5d1bfd249d18692a9 to your computer and use it in GitHub Desktop.
Save legobyte/d8659100750405f5d1bfd249d18692a9 to your computer and use it in GitHub Desktop.
build.gradle useful solutions
// change java source
android{
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "1.8"
}
}
// change output name
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "MyAppName-${variant.name}-${variant.versionCode}.apk"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment