[android] ignore the gms version from `react-native-http-bridge`.
`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>
This commit is contained in:
parent
c26572653f
commit
23702dc1e7
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue