Commit 3c20e61f authored by fallenstardust's avatar fallenstardust

build.gradle 设置输出文件名

parent e6f5ed58
......@@ -49,6 +49,12 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
android.applicationVariants.all { variant ->
variant.outputs.all {
def fileName = "YGOMobile-${variant.name}${versionName}.apk"
outputFileName = fileName
}
}
sourceSets {
main {
assets.srcDirs = ['assets']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment