Last active
September 20, 2020 03:57
-
-
Save legobyte/d8659100750405f5d1bfd249d18692a9 to your computer and use it in GitHub Desktop.
build.gradle useful solutions
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
// 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