mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-04 02:05:16 +08:00
chore: bump dependencies
This commit is contained in:
2
.idea/kotlinc.xml
generated
2
.idea/kotlinc.xml
generated
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="KotlinJpsPluginSettings">
|
<component name="KotlinJpsPluginSettings">
|
||||||
<option name="version" value="1.9.10" />
|
<option name="version" value="1.9.20" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
@@ -25,13 +25,13 @@ plugins:
|
|||||||
version: 8.1.2
|
version: 8.1.2
|
||||||
org.jetbrains.kotlin.android:
|
org.jetbrains.kotlin.android:
|
||||||
alias: kotlin-android
|
alias: kotlin-android
|
||||||
version: 1.9.10
|
version: 1.9.20
|
||||||
com.highcapable.flexilocale:
|
com.highcapable.flexilocale:
|
||||||
alias: flexi-locale
|
alias: flexi-locale
|
||||||
version: 1.0.1
|
version: 1.0.1
|
||||||
com.google.devtools.ksp:
|
com.google.devtools.ksp:
|
||||||
alias: kotlin-ksp
|
alias: kotlin-ksp
|
||||||
version: 1.9.10-1.0.13
|
version: 1.9.20-1.0.14
|
||||||
|
|
||||||
libraries:
|
libraries:
|
||||||
com.fankes.projectpromote:
|
com.fankes.projectpromote:
|
||||||
|
@@ -59,7 +59,7 @@ androidComponents {
|
|||||||
onVariants(selector().all()) {
|
onVariants(selector().all()) {
|
||||||
it.outputs.forEach { output ->
|
it.outputs.forEach { output ->
|
||||||
val currentType = it.buildType
|
val currentType = it.buildType
|
||||||
val currentSuffix = property.github.ci.commit.id?.let { suffix -> if (suffix.isNotBlank()) "-$suffix" else "" } ?: ""
|
val currentSuffix = property.github.ci.commit.id.let { suffix -> if (suffix.isNotBlank()) "-$suffix" else "" }
|
||||||
val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})"
|
val currentVersion = "${output.versionName.get()}$currentSuffix(${output.versionCode.get()})"
|
||||||
if (output is com.android.build.api.variant.impl.VariantOutputImpl)
|
if (output is com.android.build.api.variant.impl.VariantOutputImpl)
|
||||||
output.outputFileName.set("${property.project.name}-module-v$currentVersion-$currentType.apk")
|
output.outputFileName.set("${property.project.name}-module-v$currentVersion-$currentType.apk")
|
||||||
|
Reference in New Issue
Block a user