fix: APK命名加buildType后缀 + manifest URL同步

- v0.1.0-dav-android-7.apk → v0.1.0-dav-android-7-debug.apk
- 3个manifest URL同步更新
This commit is contained in:
LukeMackin
2026-07-19 15:57:24 +08:00
parent db5b7de50f
commit 1b3d2fc06f
4 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ android {
applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "v${variant.versionName}-dav-android-${variant.versionCode}.apk"
outputFileName = "v${variant.versionName}-dav-android-${variant.versionCode}-${variant.buildType.name}.apk"
}
}
}