Skip to content
Open
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
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ dependencies {
implementation "com.facebook.react:react-native:+"
implementation 'androidx.exifinterface:exifinterface:1.1.0'
implementation 'it.sephiroth.android.exif:library:+'
implementation 'com.github.drewnoakes:metadata-extractor:321551df00'
implementation 'com.github.drewnoakes:metadata-extractor:2.19.0'
Copy link

Copilot AI Nov 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using the JitPack reference 'com.github.drewnoakes:metadata-extractor' with a version number is problematic. The metadata-extractor library is published to Maven Central and should be referenced as 'com.drewnoakes:metadata-extractor:2.19.0' instead. The 'com.github.*' group ID is used by JitPack for building from GitHub, but this library has official Maven Central releases that should be preferred.

Suggested change
implementation 'com.github.drewnoakes:metadata-extractor:2.19.0'
implementation 'com.drewnoakes:metadata-extractor:2.19.0'

Copilot uses AI. Check for mistakes.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@budowski do you remember any reason why we pinned this dependency to this specific commit (drewnoakes/metadata-extractor@321551df00), and are not using the maven version here?

// From node_modules
}

Expand Down