Skip to content

Commit

Permalink
#1109 Fix build fails on the version conflict with ResolutionStrategy…
Browse files Browse the repository at this point in the history
….IGNORE
  • Loading branch information
dmitrytavpeko committed Nov 16, 2023
1 parent 67e8f2e commit 3514690
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ internal class DefaultEditManager(
e has "forbidden" && e.details.message.orEmpty().let { m ->
// Bundle message: APK specifies a version code that has already been used.
// APK message: Cannot update a published APK.
m.contains("version code") || m.contains("Cannot update", ignoreCase = true)
m.contains("version code", ignoreCase = true) || m.contains("Cannot update", ignoreCase = true)
}
) {
when (strategy) {
Expand Down

0 comments on commit 3514690

Please sign in to comment.