Skip to content

Commit

Permalink
fix: crash: conflicting class with host
Browse files Browse the repository at this point in the history
com.bumptech.glide.*
  • Loading branch information
cinit committed Oct 2, 2023
1 parent a4ebc53 commit e1b4ffe
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ public static boolean isConflictingClass(String name) {
|| name.startsWith("com.google.common.")
|| name.startsWith("com.microsoft.appcenter.")
|| name.startsWith("org.intellij.lang.annotations.")
|| name.startsWith("org.jetbrains.annotations.");
|| name.startsWith("org.jetbrains.annotations.")
|| name.startsWith("com.bumptech.glide.")
|| name.startsWith("com.google.errorprone.annotations.");
}

@Override
Expand Down

0 comments on commit e1b4ffe

Please sign in to comment.