mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Avoid multiple PR from Dependabot when Flipper is upgraded.
This commit is contained in:
parent
80b94821a0
commit
667db71fb9
2 changed files with 7 additions and 2 deletions
|
@ -21,6 +21,7 @@ def markwon = "4.6.2"
|
||||||
def moshi = "1.13.0"
|
def moshi = "1.13.0"
|
||||||
def lifecycle = "2.4.1"
|
def lifecycle = "2.4.1"
|
||||||
def flowBinding = "1.2.0"
|
def flowBinding = "1.2.0"
|
||||||
|
def flipper = "0.151.1"
|
||||||
def epoxy = "4.6.2"
|
def epoxy = "4.6.2"
|
||||||
def mavericks = "2.7.0"
|
def mavericks = "2.7.0"
|
||||||
def glide = "4.13.2"
|
def glide = "4.13.2"
|
||||||
|
@ -91,6 +92,10 @@ ext.libs = [
|
||||||
'hiltAndroidTesting' : "com.google.dagger:hilt-android-testing:$dagger",
|
'hiltAndroidTesting' : "com.google.dagger:hilt-android-testing:$dagger",
|
||||||
'hiltCompiler' : "com.google.dagger:hilt-compiler:$dagger"
|
'hiltCompiler' : "com.google.dagger:hilt-compiler:$dagger"
|
||||||
],
|
],
|
||||||
|
flipper : [
|
||||||
|
'flipper' : "com.facebook.flipper:flipper:$flipper",
|
||||||
|
'flipperNetworkPlugin' : "com.facebook.flipper:flipper-network-plugin:$flipper",
|
||||||
|
],
|
||||||
squareup : [
|
squareup : [
|
||||||
'moshi' : "com.squareup.moshi:moshi:$moshi",
|
'moshi' : "com.squareup.moshi:moshi:$moshi",
|
||||||
'moshiKt' : "com.squareup.moshi:moshi-kotlin:$moshi",
|
'moshiKt' : "com.squareup.moshi:moshi-kotlin:$moshi",
|
||||||
|
|
|
@ -534,10 +534,10 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Flipper, debug builds only
|
// Flipper, debug builds only
|
||||||
debugImplementation('com.facebook.flipper:flipper:0.151.1') {
|
debugImplementation(libs.flipper.flipper) {
|
||||||
exclude group: 'com.facebook.fbjni', module: 'fbjni'
|
exclude group: 'com.facebook.fbjni', module: 'fbjni'
|
||||||
}
|
}
|
||||||
debugImplementation('com.facebook.flipper:flipper-network-plugin:0.151.1') {
|
debugImplementation(libs.flipper.flipperNetworkPlugin) {
|
||||||
exclude group: 'com.facebook.fbjni', module: 'fbjni'
|
exclude group: 'com.facebook.fbjni', module: 'fbjni'
|
||||||
}
|
}
|
||||||
debugImplementation 'com.facebook.soloader:soloader:0.10.3'
|
debugImplementation 'com.facebook.soloader:soloader:0.10.3'
|
||||||
|
|
Loading…
Reference in a new issue