Skip to content

Commit af3724b

Browse files
dmitrytavpekoSUPERCILEX
authored andcommitted
#1109 Fix build fails on the version conflict with ResolutionStrategy.IGNORE
1 parent 67e8f2e commit af3724b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • play/android-publisher/src/main/kotlin/com/github/triplet/gradle/androidpublisher/internal

play/android-publisher/src/main/kotlin/com/github/triplet/gradle/androidpublisher/internal/DefaultEditManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ internal class DefaultEditManager(
216216
e has "forbidden" && e.details.message.orEmpty().let { m ->
217217
// Bundle message: APK specifies a version code that has already been used.
218218
// APK message: Cannot update a published APK.
219-
m.contains("version code") || m.contains("Cannot update", ignoreCase = true)
219+
m.contains("version code", ignoreCase = true) || m.contains("Cannot update", ignoreCase = true)
220220
}
221221
) {
222222
when (strategy) {

0 commit comments

Comments
 (0)