Skip to content

Commit

Permalink
[android] ignore the gms version from react-native-http-bridge.
Browse files Browse the repository at this point in the history
`react-native-http-bridge` has an unbound dependency on GMS,
that sometimes brings unnecessary transitive dependencies to our builds.

This commit forces to ignore this depencency.

Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
  • Loading branch information
mandrigin committed Jun 18, 2019
1 parent c265726 commit 23702dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ dependencies {
implementation project(':react-native-background-timer')
implementation project(':react-native-svg')
implementation 'com.android.support:multidex:1.0.2'
implementation project(':react-native-http-bridge')
compile (project(':react-native-http-bridge')) {
exclude group: "com.google.android.gms"
}
implementation project(':react-native-splash-screen')
implementation project(':react-native-image-resizer')
implementation project(':react-native-dialogs')
Expand Down

0 comments on commit 23702dc

Please sign in to comment.