Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import com.google.firebase.crashlytics.buildtools.ndk.internal.elf.ElfSymbol;
import com.google.firebase.crashlytics.buildtools.utils.FileUtils;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
Expand All @@ -47,7 +46,7 @@ private Optional<BuildIdInfo> getBuildIdInfo(File file) {
BuildIdInfoContentHandler contentHandler = new BuildIdInfoContentHandler(file.getName());
try {
ElfDataParser.parse(file, contentHandler, false);
} catch (IOException | NegativeArraySizeException | ArithmeticException ex) {
} catch (Exception ex) {
// TODO(b/289053263): Make build tools support Go binaries smoother.
// Ignore any file that doesn't parse, or has unexpected opcodeBase, to avoid breaking builds.
getLogger().logD("Unable to parse binary: " + file.getPath() + " - " + ex.getMessage());
Expand Down
1 change: 1 addition & 0 deletions firebase-crashlytics-gradle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### Unreleased

- [changed] Improved efficiency when extracting breakpad binary files.
- [fixed] Avoid build breaks when handling unsupported native libraries for injectCrashlyticsBuildIds task [#7780]

### Crashlytics Gradle plugin version 3.0.6

Expand Down
Loading