React-native-firebase: [v6] crashlytics().setUserId crashes on android with auto_collection disabled

Created on 30 Jun 2019  ·  17Comments  ·  Source: invertase/react-native-firebase


Issue



calling crashlytics().setUserId("someid") causes the app to crash with:

E/unknown:ReactNative: Exception in native call
    java.lang.IllegalStateException: Must Initialize Fabric before using singleton()
        at io.fabric.sdk.android.Fabric.singleton(Fabric.java:301)
        at io.fabric.sdk.android.Fabric.getKit(Fabric.java:551)
        at com.crashlytics.android.Crashlytics.getInstance(Crashlytics.java:191)
        at io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsModule.setUserId(ReactNativeFirebaseCrashlyticsModule.java:85)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:372)
        at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:158)
        at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method)
        at android.os.Handler.handleCallback(Handler.java:873)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:29)
        at android.os.Looper.loop(Looper.java:193)
        at com.facebook.react.bridge.queue.MessageQueueThreadImpl$4.run(MessageQueueThreadImpl.java:232)
        at java.lang.Thread.run(Thread.java:764)

Project Files






iOS

Click To Expand

#### `ios/Podfile`: - [ ] I'm not using Pods - [x] I'm using Pods and my Podfile looks like:

# N/A
#### `AppDelegate.m`:
// N/A


Android

Click To Expand

#### Have you converted to AndroidX? - [x] my application is an AndroidX application? - [x] I am using `android/gradle.settings` `jetifier=true` for Android compatibility? - [x] I am using the NPM package `jetifier` for react-native compatibility? #### `android/build.gradle`:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 16
        compileSdkVersion = 28
        targetSdkVersion = 28
        supportLibVersion = "28.0.0"
    }
    repositories {
        google()
        jcenter()

        maven {
            url 'https://maven.fabric.io/public'
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'
        classpath 'com.google.gms:google-services:4.3.0'
        classpath 'io.fabric.tools:gradle:1.29.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
    }
}

#### `android/app/build.gradle`:
apply plugin: "com.android.application"

import com.android.build.OutputFile

project.ext.react = [
    entryFile: "index.js"
]

apply from: "../../node_modules/react-native/react.gradle"

def enableSeparateBuildPerCPUArchitecture = false

/**
 * Run Proguard to shrink the Java bytecode in release builds.
 */
def enableProguardInReleaseBuilds = false

android {
    compileSdkVersion rootProject.ext.compileSdkVersion

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
        applicationId "-----"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1"
        multiDexEnabled true
    }

    dexOptions {
        javaMaxHeapSize '8g'
    }

    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
        }
    }

    buildTypes {
        release {
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }

        debug {
            applicationIdSuffix ".debug"
            debuggable true
        }
    }

    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }

    packagingOptions {
        // pickFirst '**/libjsc.so'
        pickFirst 'lib/*/libc++_shared.so'
        exclude 'androidsupportmultidexversion.txt'
    }
}

dependencies {
    implementation project(':react-native-haptic-feedback')
    implementation project(':@react-native-community_netinfo')
    implementation project(':@react-native-firebase_perf')
    implementation project(':@react-native-firebase_utils')
    implementation project(':react-native-gesture-handler')
    implementation project(':@react-native-firebase_analytics')
    implementation project(':@react-native-firebase_crashlytics')
    implementation project(':@react-native-firebase_app')
    implementation project(':react-native-maps')
    implementation project(':react-native-geolocation-service')
    implementation project(':@react-native-community_async-storage')
    implementation project(':react-native-push-notification')
    implementation project(':react-native-sound')
    implementation project(':react-native-linear-gradient')
    implementation project(':react-native-vector-icons')
    implementation project(':rn-fetch-blob')
    implementation project(':react-native-voice')
    implementation project(':react-native-audio-record')
    implementation project(':react-native-svg')
    implementation project(':react-native-date-picker')
    implementation project(':react-native-restart')
    implementation project(':react-native-version-number')
    implementation project(':react-native-pdf')
    implementation project(':react-native-snackbar')
    implementation 'com.facebook.android:facebook-android-sdk:4.39.0'
    implementation project(':react-native-fbsdk')
    implementation project(':react-native-localize')
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "com.android.support:support-v4:${rootProject.ext.supportLibVersion}"
    implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
    implementation "com.google.android.gms:play-services-location:16.0.0"
    implementation "com.facebook.react:react-native:+"  // From node_modules
    implementation 'com.android.support:multidex:1.0.3'
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

apply plugin: 'com.google.gms.google-services'

#### `android/settings.gradle`:
rootProject.name = '-----'
include ':react-native-haptic-feedback'
project(':react-native-haptic-feedback').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-haptic-feedback/android')
include ':@react-native-community_netinfo'
project(':@react-native-community_netinfo').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/netinfo/android')
include ':@react-native-firebase_perf'
project(':@react-native-firebase_perf').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/perf/android')
include ':@react-native-firebase_utils'
project(':@react-native-firebase_utils').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/utils/android')
include ':react-native-gesture-handler'
project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android')
include ':@react-native-firebase_analytics'
project(':@react-native-firebase_analytics').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/analytics/android')
include ':@react-native-firebase_crashlytics'
project(':@react-native-firebase_crashlytics').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/crashlytics/android')
include ':@react-native-firebase_app'
project(':@react-native-firebase_app').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/app/android')
include ':react-native-maps'
project(':react-native-maps').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-maps/lib/android')
include ':react-native-geolocation-service'
project(':react-native-geolocation-service').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-geolocation-service/android')
include ':@react-native-community_async-storage'
project(':@react-native-community_async-storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/async-storage/android')
include ':react-native-push-notification'
project(':react-native-push-notification').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-push-notification/android')
include ':react-native-sound'
project(':react-native-sound').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sound/android')
include ':react-native-linear-gradient'
project(':react-native-linear-gradient').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-linear-gradient/android')
include ':react-native-vector-icons'
project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
include ':rn-fetch-blob'
project(':rn-fetch-blob').projectDir = new File(rootProject.projectDir, '../node_modules/rn-fetch-blob/android')
include ':react-native-voice'
project(':react-native-voice').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-voice/android')
include ':react-native-audio-record'
project(':react-native-audio-record').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-audio-record/android')
include ':react-native-svg'
project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android')
include ':react-native-date-picker'
project(':react-native-date-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-date-picker/android')
include ':react-native-restart'
project(':react-native-restart').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-restart/android')
include ':react-native-version-number'
project(':react-native-version-number').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-version-number/android')
include ':react-native-pdf'
project(':react-native-pdf').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-pdf/android')
include ':react-native-snackbar'
project(':react-native-snackbar').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-snackbar/android')
include ':react-native-fbsdk'
project(':react-native-fbsdk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fbsdk/android')
include ':react-native-localize'
project(':react-native-localize').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-localize/android')

include ':app'

#### `MainApplication.java`:
package ----;

import android.app.Application;
import com.facebook.CallbackManager;
import com.facebook.FacebookSdk;
import com.facebook.appevents.AppEventsLogger;
import com.facebook.react.ReactApplication;
import com.mkuczera.RNReactNativeHapticFeedbackPackage;
import com.reactnativecommunity.netinfo.NetInfoPackage;
import io.invertase.firebase.perf.ReactNativeFirebasePerfPackage;
import io.invertase.firebase.utils.ReactNativeFirebaseUtilsPackage;
import com.swmansion.gesturehandler.react.RNGestureHandlerPackage;
import io.invertase.firebase.analytics.ReactNativeFirebaseAnalyticsPackage;
import io.invertase.firebase.app.ReactNativeFirebaseApp;
import io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsPackage;
import io.invertase.firebase.app.ReactNativeFirebaseAppPackage;
import com.airbnb.android.react.maps.MapsPackage;
import com.agontuk.RNFusedLocation.RNFusedLocationPackage;
import com.reactnativecommunity.asyncstorage.AsyncStoragePackage;
import com.dieam.reactnativepushnotification.ReactNativePushNotificationPackage;
import com.zmxv.RNSound.RNSoundPackage;
import com.BV.LinearGradient.LinearGradientPackage;
import com.oblador.vectoricons.VectorIconsPackage;
import com.RNFetchBlob.RNFetchBlobPackage;
import com.wenkesj.voice.VoicePackage;
import com.goodatlas.audiorecord.RNAudioRecordPackage;
import com.horcrux.svg.SvgPackage;
import com.henninghall.date_picker.DatePickerPackage;
import com.avishayil.rnrestart.ReactNativeRestartPackage;
import com.apsl.versionnumber.RNVersionNumberPackage;
import org.wonday.pdf.RCTPdfView;
import com.azendoo.reactnativesnackbar.SnackbarPackage;
import com.facebook.reactnative.androidsdk.FBSDKPackage;
import com.reactcommunity.rnlocalize.RNLocalizePackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;

import java.util.Arrays;
import java.util.List;


public class MainApplication extends Application implements ReactApplication {
  private static CallbackManager mCallbackManager = CallbackManager.Factory.create();

  private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
    @Override
    public boolean getUseDeveloperSupport() {
      return BuildConfig.DEBUG;
    }

    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
          new MainReactPackage(),
            new RNReactNativeHapticFeedbackPackage(),
            new NetInfoPackage(),
          new ReactNativeFirebasePerfPackage(),
          new ReactNativeFirebaseUtilsPackage(),
          new RNGestureHandlerPackage(),
          new ReactNativeFirebaseAnalyticsPackage(),
          new ReactNativeFirebaseCrashlyticsPackage(),
          new ReactNativeFirebaseAppPackage(),
          new MapsPackage(),
          new RNFusedLocationPackage(),
          new AsyncStoragePackage(),
          new ReactNativePushNotificationPackage(),
          new RNSoundPackage(),
          new LinearGradientPackage(),
          new VectorIconsPackage(),
          new RNFetchBlobPackage(),
          new VoicePackage(),
          new RNAudioRecordPackage(),
          new SvgPackage(),
          new DatePickerPackage(),
          new ReactNativeRestartPackage(),
          new RNVersionNumberPackage(),
          new RCTPdfView(),
          new SnackbarPackage(),
          new FBSDKPackage(mCallbackManager),
          new RNLocalizePackage()
      );
    }

    @Override
    protected String getJSMainModuleName() {
      return "index";
    }
  };

  @Override
  public ReactNativeHost getReactNativeHost() {
    return mReactNativeHost;
  }

  protected static CallbackManager getCallbackManager() {
    return mCallbackManager;
  }

  @Override
  public void onCreate() {
    super.onCreate();
    SoLoader.init(this, /* native exopackage */ false);

    ReactNativeFirebaseApp.initializeSecondaryApp("-----");
  }
}

#### `AndroidManifest.xml`:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="-----">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.RECORD_AUDIO" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

    <application
        android:name=".MainApplication"
        android:allowBackup="false"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
            android:label="@string/app_name"
            android:windowSoftInputMode="adjustResize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
                <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
            </intent-filter>
        </activity>
        <activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />

        <activity
            android:name="com.facebook.FacebookActivity"
            android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
            android:label="@string/app_name" />
        <activity
            android:name="com.facebook.CustomTabActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data android:scheme="@string/fb_login_protocol_scheme" />
            </intent-filter>
        </activity>

        <receiver android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationPublisher" />
        <receiver android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationBootEventReceiver">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>

        <service android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationRegistrationService" />
        <service
            android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationListenerService"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>

        <meta-data
            android:name="com.facebook.sdk.ApplicationId"
            android:value="@string/facebook_app_id" />
        <meta-data
            android:name="com.dieam.reactnativepushnotification.notification_channel_name"
            android:value="----" />
        <meta-data
            android:name="com.dieam.reactnativepushnotification.notification_channel_description"
            android:value="All Social Interactions" />
        <meta-data
            android:name="com.dieam.reactnativepushnotification.notification_color"
            android:resource="@color/----" />
        <meta-data
            android:name="com.google.firebase.messaging.default_notification_icon"
            android:resource="@drawable/ic_notification" />

        <meta-data android:name="firebase_analytics_collection_enabled" android:value="false" />

        <meta-data
                android:name="io.fabric.ApiKey"
                android:value="----"
        />
        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="----" />
    </application>

</manifest>


Environment

Click To Expand

**`react-native info` output:**

  React Native Environment Info:
    System:
      OS: macOS 10.14.3
      CPU: (4) x64 Intel(R) Core(TM) i7-4578U CPU @ 3.00GHz
      Memory: 194.91 MB / 16.00 GB
      Shell: 5.3 - /bin/zsh
    Binaries:
      Node: 12.3.1 - /usr/local/bin/node
      Yarn: 1.16.0 - ~/.yarn/bin/yarn
      npm: 6.9.0 - /usr/local/bin/npm
      Watchman: 4.9.0 - /usr/local/bin/watchman
    SDKs:
      iOS SDK:
        Platforms: iOS 12.2, macOS 10.14, tvOS 12.2, watchOS 5.2
      Android SDK:
        API Levels: 23, 25, 26, 27, 28
        Build Tools: 27.0.3, 28.0.3
        System Images: android-28 | Google APIs Intel x86 Atom, android-28 | Google Play Intel x86 Atom
    IDEs:
      Xcode: 10.2.1/10E1001 - /usr/bin/xcodebuild
    npmPackages:
      react: 16.8.3 => 16.8.3 
      react-native: 0.59.9 => 0.59.9 
    npmGlobalPackages:
      react-native-cli: 2.0.1
- **Platform that you're experiencing the issue on**: - [ ] iOS - [x] Android - [ ] **iOS** but have not tested behavior on Android - [ ] **Android** but have not tested behavior on iOS - [ ] Both - **`react-native-firebase` version you're using that has this issue:** - `^6.0.0-alpha.25` - **`Firebase` module(s) you're using that has the issue:** - `crashlytics` - **Are you using `TypeScript`?** - `N`




Think react-native-firebase is great? Please consider supporting all of the project maintainers and contributors by donating via our Open Collective where all contributors can submit expenses. [Learn More]

Crash Crashlytics >= 6 📌 pin

Most helpful comment

This happens for me too, with v6.3.4.
firebase.json:

{
    "react-native": {
        "crashlytics_debug_enabled": false,
        "crashlytics_auto_collection_enabled": false,
        "analytics_auto_collection_enabled": false
    }
}

javascript:

await firebase.analytics().setAnalyticsCollectionEnabled(true);
await firebase.analytics().setUserId(installation_uuid);
await firebase.crashlytics().setCrashlyticsCollectionEnabled(true);
await firebase.crashlytics().setUserId(installation_uuid);

result:

Should we reopen this issue? Or is it something that I did not consider?

All 17 comments

ok, it is just related to the auto collection:

{
  "react-native": {
    "crashlytics_auto_collection_enabled": false
  }
}

2019-06-30 19:42:55.881 9786-9786/---.debug I/RNFBCrashlyticsInit: auto collection disabled, skipping initialization

Causes the App to crash on any Crashlytics call.

Whereas if I enable the auto_collection the call will work.

Very interesting - thanks for coming back with the template, and finding a toggle that seems to trigger it.

I’m not sure about your android/app/build.gradle though - how can your app be androidx but you still have support library references in there? Where are your google firebase dependency versions? Those may be v5 -> v6 RNFB differences (I maintain v5 but haven’t played with v6 yet)

I’m going to tag @Salakar and @Ehesp on this one as it seems like it might be a quickly reproducible / quickly fixable win for v6 ?

There was something related to crashlytics auto collection in the release notes on the Google SDK sites where if people were opted out of data collection crashlytics auto-collection wasn’t honoring it and it changed recently. I could be mis-remembering but the point is to maybe go check over there at recent crashlytics / analytics changes to see if there’s some breaking change that needs to be followed

This is how the dependencies look like:

Click To Expand

19:59:54: Executing task 'dependencies'...

Executing tasks: [dependencies]


> Configure project :@react-native-firebase_analytics
:@react-native-firebase_analytics:firebase.analytics using default value: 16.4.0
:@react-native-firebase_analytics:googlePlayServices.base using default value: 16.1.0
:@react-native-firebase_analytics package.json found at WORKDIR/mobile/node_modules/@react-native-firebase/analytics/package.json
:@react-native-firebase_analytics:version set from package.json: 6.0.0-alpha.25 (6,0,0 - 6000000)
:@react-native-firebase_analytics:android.compileSdk using custom value: 28
:@react-native-firebase_analytics:android.targetSdk using custom value: 28
:@react-native-firebase_analytics:android.minSdk using custom value: 16
:@react-native-firebase_analytics:reactNativeAndroidDir WORKDIR/mobile/node_modules/react-native/android

> Configure project :@react-native-firebase_app
:@react-native-firebase_app:firebase.core using default value: 16.0.9
:@react-native-firebase_app:firebase.common using default value: 17.0.0
:@react-native-firebase_app:googlePlayServices.base using default value: 16.1.0
:@react-native-firebase_app package.json found at WORKDIR/mobile/node_modules/@react-native-firebase/app/package.json
:@react-native-firebase_app:version set from package.json: 6.0.0-alpha.25 (6,0,0 - 6000000)
:@react-native-firebase_app:android.compileSdk using custom value: 28
:@react-native-firebase_app:android.targetSdk using custom value: 28
:@react-native-firebase_app:android.minSdk using custom value: 16
:@react-native-firebase_app:reactNativeAndroidDir WORKDIR/mobile/node_modules/react-native/android

> Configure project :@react-native-firebase_crashlytics
:@react-native-firebase_crashlytics:fabric.crashlytics using default value: 2.10.0
:@react-native-firebase_crashlytics:fabric.crashlyticsNdk using default value: 2.0.5
:@react-native-firebase_crashlytics:googlePlayServices.base using default value: 16.1.0
:@react-native-firebase_crashlytics package.json found at WORKDIR/mobile/node_modules/@react-native-firebase/crashlytics/package.json
:@react-native-firebase_crashlytics:version set from package.json: 6.0.0-alpha.25 (6,0,0 - 6000000)
:@react-native-firebase_crashlytics:android.compileSdk using custom value: 28
:@react-native-firebase_crashlytics:android.targetSdk using custom value: 28
:@react-native-firebase_crashlytics:android.minSdk using custom value: 16
:@react-native-firebase_crashlytics:reactNativeAndroidDir WORKDIR/mobile/node_modules/react-native/android

> Configure project :@react-native-firebase_perf
:@react-native-firebase_perf:firebase.perf using default value: 17.0.0
:@react-native-firebase_perf:googlePlayServices.base using default value: 16.1.0
:@react-native-firebase_perf package.json found at WORKDIR/mobile/node_modules/@react-native-firebase/perf/package.json
:@react-native-firebase_perf:version set from package.json: 6.0.0-alpha.25 (6,0,0 - 6000000)
:@react-native-firebase_perf:android.compileSdk using custom value: 28
:@react-native-firebase_perf:android.targetSdk using custom value: 28
:@react-native-firebase_perf:android.minSdk using custom value: 16
:@react-native-firebase_perf:reactNativeAndroidDir WORKDIR/mobile/node_modules/react-native/android

> Configure project :@react-native-firebase_utils
:@react-native-firebase_utils:googlePlayServices.base using default value: 16.1.0
:@react-native-firebase_utils package.json found at WORKDIR/mobile/node_modules/@react-native-firebase/utils/package.json
:@react-native-firebase_utils:version set from package.json: 6.0.0-alpha.25 (6,0,0 - 6000000)
:@react-native-firebase_utils:android.compileSdk using custom value: 28
:@react-native-firebase_utils:android.targetSdk using custom value: 28
:@react-native-firebase_utils:android.minSdk using custom value: 16
:@react-native-firebase_utils:reactNativeAndroidDir WORKDIR/mobile/node_modules/react-native/android

> Configure project :app
WARNING: API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
It will be removed at the end of 2019.
For more information, see https://d.android.com/r/tools/task-configuration-avoidance.
To determine what is calling variant.getMergeResources(), use -Pandroid.debug.obsoleteApi=true on the command line to display more information.

> Configure project :react-native-date-picker
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html

> Configure project :react-native-voice
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
WARNING: Configuration 'testCompile' is obsolete and has been replaced with 'testImplementation'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
WARNING: The specified Android SDK Build Tools version (23.0.2) is ignored, as it is below the minimum supported version (28.0.3) for Android Gradle Plugin 3.4.1.
Android SDK Build Tools 28.0.3 will be used.
To suppress this warning, remove "buildToolsVersion '23.0.2'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.

> Task :app:dependencies

------------------------------------------------------------
Project :app
------------------------------------------------------------

_internal_aapt2_binary - The AAPT2 binary to use for processing resources.
\--- com.android.tools.build:aapt2:3.4.1-5326820

androidApis - Configuration providing various types of Android JAR file
No dependencies

androidTestAnnotationProcessor - Classpath for the annotation processor for 'androidTest'. (n)
No dependencies

androidTestApi - API dependencies for 'androidTest' sources. (n)
No dependencies

androidTestApk - Apk dependencies for 'androidTest' sources (deprecated: use 'androidTestRuntimeOnly' instead). (n)
No dependencies

androidTestCompile - Compile dependencies for 'androidTest' sources (deprecated: use 'androidTestImplementation' instead). (n)
No dependencies

androidTestCompileOnly - Compile only dependencies for 'androidTest' sources. (n)
No dependencies

androidTestDebugAnnotationProcessor - Classpath for the annotation processor for 'androidTestDebug'. (n)
No dependencies

androidTestDebugApi - API dependencies for 'androidTestDebug' sources. (n)
No dependencies

androidTestDebugApk - Apk dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugRuntimeOnly' instead). (n)
No dependencies

androidTestDebugCompile - Compile dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugImplementation' instead). (n)
No dependencies

androidTestDebugCompileOnly - Compile only dependencies for 'androidTestDebug' sources. (n)
No dependencies

androidTestDebugImplementation - Implementation only dependencies for 'androidTestDebug' sources. (n)
No dependencies

androidTestDebugProvided - Provided dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugCompileOnly' instead). (n)
No dependencies

androidTestDebugRuntimeOnly - Runtime only dependencies for 'androidTestDebug' sources. (n)
No dependencies

androidTestDebugWearApp - Link to a wear app to embed for object 'androidTestDebug'. (n)
No dependencies

androidTestImplementation - Implementation only dependencies for 'androidTest' sources. (n)
No dependencies

androidTestProvided - Provided dependencies for 'androidTest' sources (deprecated: use 'androidTestCompileOnly' instead). (n)
No dependencies

androidTestRuntimeOnly - Runtime only dependencies for 'androidTest' sources. (n)
No dependencies

androidTestUtil - Additional APKs used during instrumentation testing.
No dependencies

androidTestWearApp - Link to a wear app to embed for object 'androidTest'. (n)
No dependencies

annotationProcessor - Classpath for the annotation processor for 'main'. (n)
No dependencies

api - API dependencies for 'main' sources. (n)
No dependencies

apk - Apk dependencies for 'main' sources (deprecated: use 'runtimeOnly' instead). (n)
No dependencies

archives - Configuration for archive artifacts.
No dependencies

compile - Compile dependencies for 'main' sources (deprecated: use 'implementation' instead).
No dependencies

compileOnly - Compile only dependencies for 'main' sources. (n)
No dependencies

debugAndroidTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugAndroidTest
No dependencies

debugAndroidTestCompileClasspath - Resolved configuration for compilation for variant: debugAndroidTest
+--- androidx.multidex:multidex-instrumentation:2.0.0
|    \--- androidx.multidex:multidex:2.0.0
+--- androidx.multidex:multidex-instrumentation:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
+--- com.facebook.react:react-native:{strictly 0.59.9} -> 0.59.9 (c)
+--- com.facebook.infer.annotation:infer-annotation:{strictly 0.11.2} -> 0.11.2 (c)
+--- com.google.code.findbugs:jsr305:{strictly 3.0.2} -> 3.0.2 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
+--- com.facebook.fresco:fresco:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:fbcore:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:drawee:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline-base:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.soloader:soloader:{strictly 0.6.0} -> 0.6.0 (c)
+--- com.parse.bolts:bolts-tasks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.fresco:imagepipeline-okhttp3:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.12.1} -> 3.12.1 (c)
+--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.12.1} -> 3.12.1 (c)
+--- androidx.appcompat:appcompat:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.annotation:annotation:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.core:core:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.fragment:fragment:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-location:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-places-placereport:{strictly 16.0.0} -> 16.0.0 (c)
+--- cn.carbswang.android:NumberPickerView:{strictly 1.2.0} -> 1.2.0 (c)
+--- org.apache.commons:commons-lang3:{strictly 3.6} -> 3.6 (c)
+--- net.time4j:time4j-android:{strictly 4.2-2018i} -> 4.2-2018i (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-android-sdk:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-core:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.parse.bolts:bolts-android:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.parse.bolts:bolts-applinks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.android:facebook-common:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.google.zxing:core:{strictly 3.3.0} -> 3.3.0 (c)
+--- androidx.browser:browser:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-login:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-share:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-places:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-applinks:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-messenger:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-marketing:{strictly 4.39.0} -> 4.39.0 (c)
+--- project :react-native-haptic-feedback
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |         \--- com.facebook.fresco:imagepipeline-base:1.10.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    \--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |         \--- com.squareup.okio:okio:1.15.0
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
+--- project :react-native-geolocation-service
+--- project :@react-native-community_async-storage
+--- project :react-native-push-notification
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
+--- project :rn-fetch-blob
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
+--- project :react-native-version-number
+--- project :react-native-pdf
+--- project :react-native-snackbar
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- androidx.media:media:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0
|    |    |    \--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
+--- project :react-native-localize
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0
|    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-places-placereport:16.0.0
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
\--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0

debugAndroidTestRuntimeClasspath - Resolved configuration for runtime for variant: debugAndroidTest
+--- androidx.multidex:multidex-instrumentation:2.0.0
|    \--- androidx.multidex:multidex:2.0.0
+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
+--- com.facebook.react:react-native:{strictly 0.59.9} -> 0.59.9 (c)
+--- com.facebook.infer.annotation:infer-annotation:{strictly 0.11.2} -> 0.11.2 (c)
+--- com.google.code.findbugs:jsr305:{strictly 3.0.2} -> 3.0.2 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
+--- com.facebook.fresco:fresco:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:fbcore:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:drawee:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline-base:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.soloader:soloader:{strictly 0.6.0} -> 0.6.0 (c)
+--- com.parse.bolts:bolts-tasks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.fresco:imagepipeline-okhttp3:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.12.1} -> 3.12.1 (c)
+--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.12.1} -> 3.12.1 (c)
+--- androidx.appcompat:appcompat:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.annotation:annotation:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.core:core:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.fragment:fragment:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.google.firebase:firebase-core:{strictly 16.0.9} -> 16.0.9 (c)
+--- com.google.firebase:firebase-analytics:{strictly 16.5.0} -> 16.5.0 (c)
+--- com.google.android.gms:play-services-measurement:{strictly 16.5.0} -> 16.5.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-measurement-base:{strictly 16.5.0} -> 16.5.0 (c)
+--- com.google.android.gms:play-services-measurement-impl:{strictly 16.5.0} -> 16.5.0 (c)
+--- com.google.android.gms:play-services-ads-identifier:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-measurement-api:{strictly 16.5.0} -> 16.5.0 (c)
+--- com.google.android.gms:play-services-measurement-sdk-api:{strictly 16.5.0} -> 16.5.0 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-common:{strictly 18.0.0} -> 18.0.0 (c)
+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.3} -> 1.6.3 (c)
+--- com.google.firebase:firebase-iid:{strictly 19.0.1} -> 19.0.1 (c)
+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
+--- com.google.android.gms:play-services-measurement-sdk:{strictly 16.5.0} -> 16.5.0 (c)
+--- com.google.firebase:firebase-perf:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-clearcut:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-phenotype:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-config:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-abt:{strictly 17.1.1} -> 17.1.1 (c)
+--- com.crashlytics.sdk.android:crashlytics:{strictly 2.10.0} -> 2.10.0 (c)
+--- com.crashlytics.sdk.android:beta:{strictly 1.2.10} -> 1.2.10 (c)
+--- io.fabric.sdk.android:fabric:{strictly 1.4.8} -> 1.4.8 (c)
+--- com.crashlytics.sdk.android:crashlytics-core:{strictly 2.7.0} -> 2.7.0 (c)
+--- com.crashlytics.sdk.android:answers:{strictly 1.4.7} -> 1.4.7 (c)
+--- com.crashlytics.sdk.android:crashlytics-ndk:{strictly 2.0.5} -> 2.0.5 (c)
+--- com.google.android.gms:play-services-maps:{strictly 16.1.0} -> 16.1.0 (c)
+--- com.google.maps.android:android-maps-utils:{strictly 0.5} -> 0.5 (c)
+--- com.google.android.gms:play-services-location:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-places-placereport:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-gcm:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-iid:{strictly 17.0.0} -> 17.0.0 (c)
+--- me.leolin:ShortcutBadger:{strictly 1.1.8} -> 1.1.8 (c)
+--- com.google.firebase:firebase-messaging:{strictly 19.0.1} -> 19.0.1 (c)
+--- cn.carbswang.android:NumberPickerView:{strictly 1.2.0} -> 1.2.0 (c)
+--- org.apache.commons:commons-lang3:{strictly 3.6} -> 3.6 (c)
+--- net.time4j:time4j-android:{strictly 4.2-2018i} -> 4.2-2018i (c)
+--- com.github.barteksc:android-pdf-viewer:{strictly 3.1.0-beta.1} -> 3.1.0-beta.1 (c)
+--- com.github.barteksc:pdfium-android:{strictly 1.9.0} -> 1.9.0 (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.google.code.gson:gson:{strictly 2.8.5} -> 2.8.5 (c)
+--- com.google.android.material:material:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.transition:transition:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.recyclerview:recyclerview:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-android-sdk:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-core:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.parse.bolts:bolts-android:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.parse.bolts:bolts-applinks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.android:facebook-common:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.google.zxing:core:{strictly 3.3.0} -> 3.3.0 (c)
+--- androidx.browser:browser:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-login:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-share:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-places:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-applinks:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-messenger:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-marketing:{strictly 4.39.0} -> 4.39.0 (c)
+--- project :react-native-haptic-feedback
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |    |         +--- com.facebook.fresco:imagepipeline-base:1.10.0
|         |    |         |    +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         |    +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         |    \--- com.facebook.fresco:fbcore:1.10.0
|         |    |         +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         \--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         |    \--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    +--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |    |    \--- com.squareup.okio:okio:1.15.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    |    +--- androidx.multidex:multidex:2.0.0
|    |    +--- com.google.firebase:firebase-core:16.0.9
|    |    |    \--- com.google.firebase:firebase-analytics:16.5.0
|    |    |         +--- com.google.android.gms:play-services-measurement:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-ads-identifier:16.0.0
|    |    |         |    |    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0
|    |    |         |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0 (*)
|    |    |         +--- com.google.android.gms:play-services-measurement-api:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    +--- com.google.firebase:firebase-common:16.0.3 -> 18.0.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    \--- com.google.auto.value:auto-value-annotations:1.6.3
|    |    |         |    +--- com.google.firebase:firebase-iid:17.1.2 -> 19.0.1
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    +--- com.google.firebase:firebase-common:18.0.0 (*)
|    |    |         |    |    \--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |         |    |         +--- com.google.android.gms:play-services-base:17.0.0
|    |    |         |    |         |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    |         |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0
|    |    |         |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         \--- com.google.android.gms:play-services-measurement-sdk:16.5.0
|    |    |              +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |              \--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.google.firebase:firebase-perf:17.0.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-clearcut:16.0.0
|    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-phenotype:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-phenotype:16.0.0 (*)
|    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    +--- com.google.firebase:firebase-config:17.0.0
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-abt:17.1.1
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    \--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.google.firebase:firebase-analytics:16.4.0 -> 16.5.0 (*)
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.crashlytics.sdk.android:crashlytics:2.10.0
|    |    +--- com.crashlytics.sdk.android:beta:1.2.10
|    |    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
|    |    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    |    \--- com.crashlytics.sdk.android:answers:1.4.7
|    |    |         \--- io.fabric.sdk.android:fabric:1.4.8
|    |    \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
|    +--- com.crashlytics.sdk.android:crashlytics-ndk:2.0.5
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.6.4 -> 2.7.0 (*)
|    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-maps:16.1.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.maps.android:android-maps-utils:0.5
+--- project :react-native-geolocation-service
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.google.android.gms:play-services-location:11.4.2 -> 16.0.0
|         +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-places-placereport:16.0.0
|         |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- project :@react-native-community_async-storage
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-push-notification
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.android.gms:play-services-gcm:+ -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-iid:[17.0.0] -> 17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    +--- me.leolin:ShortcutBadger:1.1.8
|    \--- com.google.firebase:firebase-messaging:+ -> 19.0.1
|         +--- androidx.collection:collection:1.0.0 (*)
|         +--- androidx.core:core:1.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|         +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.firebase:firebase-common:18.0.0 (*)
|         +--- com.google.firebase:firebase-iid:[19.0.1] -> 19.0.1 (*)
|         \--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :rn-fetch-blob
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-version-number
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-pdf
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.github.barteksc:android-pdf-viewer:3.1.0-beta.1
|    |    +--- com.github.barteksc:pdfium-android:1.9.0
|    |    |    \--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |         +--- androidx.core:core:1.0.0 (*)
|    |    |         +--- androidx.media:media:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |         \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- androidx.core:core:1.0.0 (*)
|    \--- com.google.code.gson:gson:2.8.5
+--- project :react-native-snackbar
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.0.0
|         +--- androidx.annotation:annotation:1.0.0
|         +--- androidx.core:core:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|         +--- androidx.fragment:fragment:1.0.0 (*)
|         +--- androidx.transition:transition:1.0.0
|         |    +--- androidx.annotation:annotation:1.0.0
|         |    \--- androidx.core:core:1.0.0 (*)
|         +--- androidx.appcompat:appcompat:1.0.0 (*)
|         +--- androidx.cardview:cardview:1.0.0
|         |    \--- androidx.annotation:annotation:1.0.0
|         \--- androidx.recyclerview:recyclerview:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0 (*)
|              \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
|    \--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- project :react-native-localize
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
\--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0

debugAnnotationProcessor - Classpath for the annotation processor for 'debug'. (n)
No dependencies

debugAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debug
No dependencies

debugApi - API dependencies for 'debug' sources. (n)
No dependencies

debugApiElements - API elements for debug (n)
No dependencies

debugApk - Apk dependencies for 'debug' sources (deprecated: use 'debugRuntimeOnly' instead). (n)
No dependencies

debugBundleElements - Bundle elements for debug (n)
No dependencies

debugCompile - Compile dependencies for 'debug' sources (deprecated: use 'debugImplementation' instead). (n)
No dependencies

debugCompileClasspath - Resolved configuration for compilation for variant: debug
+--- androidx.multidex:multidex:2.0.0
+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
+--- com.facebook.react:react-native:{strictly 0.59.9} -> 0.59.9 (c)
+--- com.facebook.infer.annotation:infer-annotation:{strictly 0.11.2} -> 0.11.2 (c)
+--- com.google.code.findbugs:jsr305:{strictly 3.0.2} -> 3.0.2 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
+--- com.facebook.fresco:fresco:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:fbcore:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:drawee:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline-base:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.soloader:soloader:{strictly 0.6.0} -> 0.6.0 (c)
+--- com.parse.bolts:bolts-tasks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.fresco:imagepipeline-okhttp3:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.12.1} -> 3.12.1 (c)
+--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.12.1} -> 3.12.1 (c)
+--- androidx.appcompat:appcompat:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.annotation:annotation:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.core:core:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.fragment:fragment:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-location:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-places-placereport:{strictly 16.0.0} -> 16.0.0 (c)
+--- cn.carbswang.android:NumberPickerView:{strictly 1.2.0} -> 1.2.0 (c)
+--- org.apache.commons:commons-lang3:{strictly 3.6} -> 3.6 (c)
+--- net.time4j:time4j-android:{strictly 4.2-2018i} -> 4.2-2018i (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-android-sdk:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-core:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.parse.bolts:bolts-android:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.parse.bolts:bolts-applinks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.android:facebook-common:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.google.zxing:core:{strictly 3.3.0} -> 3.3.0 (c)
+--- androidx.browser:browser:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-login:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-share:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-places:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-applinks:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-messenger:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-marketing:{strictly 4.39.0} -> 4.39.0 (c)
+--- project :react-native-haptic-feedback
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |         \--- com.facebook.fresco:imagepipeline-base:1.10.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    \--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |         \--- com.squareup.okio:okio:1.15.0
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
+--- project :react-native-geolocation-service
+--- project :@react-native-community_async-storage
+--- project :react-native-push-notification
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
+--- project :rn-fetch-blob
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
+--- project :react-native-version-number
+--- project :react-native-pdf
+--- project :react-native-snackbar
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- androidx.media:media:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0
|    |    |    \--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
+--- project :react-native-localize
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0
|    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-places-placereport:16.0.0
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
\--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0

debugCompileOnly - Compile only dependencies for 'debug' sources. (n)
No dependencies

debugImplementation - Implementation only dependencies for 'debug' sources. (n)
No dependencies

debugMetadataElements (n)
No dependencies

debugMetadataValues - Metadata Values dependencies for the base Split
No dependencies

debugProvided - Provided dependencies for 'debug' sources (deprecated: use 'debugCompileOnly' instead). (n)
No dependencies

debugRuntimeClasspath - Resolved configuration for runtime for variant: debug
+--- androidx.multidex:multidex:2.0.0
+--- project :react-native-haptic-feedback
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |    |         +--- com.facebook.fresco:imagepipeline-base:1.10.0
|         |    |         |    +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         |    +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         |    \--- com.facebook.fresco:fbcore:1.10.0
|         |    |         +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         \--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         |    \--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    +--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |    |    \--- com.squareup.okio:okio:1.15.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    |    +--- androidx.multidex:multidex:2.0.0
|    |    +--- com.google.firebase:firebase-core:16.0.9
|    |    |    \--- com.google.firebase:firebase-analytics:16.5.0
|    |    |         +--- com.google.android.gms:play-services-measurement:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-ads-identifier:16.0.0
|    |    |         |    |    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0
|    |    |         |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0 (*)
|    |    |         +--- com.google.android.gms:play-services-measurement-api:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    +--- com.google.firebase:firebase-common:16.0.3 -> 18.0.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    \--- com.google.auto.value:auto-value-annotations:1.6.3
|    |    |         |    +--- com.google.firebase:firebase-iid:17.1.2 -> 19.0.1
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    +--- com.google.firebase:firebase-common:18.0.0 (*)
|    |    |         |    |    \--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |         |    |         +--- com.google.android.gms:play-services-base:17.0.0
|    |    |         |    |         |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    |         |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0
|    |    |         |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         \--- com.google.android.gms:play-services-measurement-sdk:16.5.0
|    |    |              +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |              \--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.google.firebase:firebase-perf:17.0.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-clearcut:16.0.0
|    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-phenotype:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-phenotype:16.0.0 (*)
|    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    +--- com.google.firebase:firebase-config:17.0.0
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-abt:17.1.1
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    \--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.google.firebase:firebase-analytics:16.4.0 -> 16.5.0 (*)
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.crashlytics.sdk.android:crashlytics:2.10.0
|    |    +--- com.crashlytics.sdk.android:beta:1.2.10
|    |    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
|    |    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    |    \--- com.crashlytics.sdk.android:answers:1.4.7
|    |    |         \--- io.fabric.sdk.android:fabric:1.4.8
|    |    \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
|    +--- com.crashlytics.sdk.android:crashlytics-ndk:2.0.5
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.6.4 -> 2.7.0 (*)
|    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-maps:16.1.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.maps.android:android-maps-utils:0.5
+--- project :react-native-geolocation-service
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.google.android.gms:play-services-location:11.4.2 -> 16.0.0
|         +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-places-placereport:16.0.0
|         |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- project :@react-native-community_async-storage
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-push-notification
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.android.gms:play-services-gcm:+ -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-iid:[17.0.0] -> 17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    +--- me.leolin:ShortcutBadger:1.1.8
|    \--- com.google.firebase:firebase-messaging:+ -> 19.0.1
|         +--- androidx.collection:collection:1.0.0 (*)
|         +--- androidx.core:core:1.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|         +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.firebase:firebase-common:18.0.0 (*)
|         +--- com.google.firebase:firebase-iid:[19.0.1] -> 19.0.1 (*)
|         \--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :rn-fetch-blob
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-version-number
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-pdf
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.github.barteksc:android-pdf-viewer:3.1.0-beta.1
|    |    +--- com.github.barteksc:pdfium-android:1.9.0
|    |    |    \--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |         +--- androidx.core:core:1.0.0 (*)
|    |    |         +--- androidx.media:media:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |         \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- androidx.core:core:1.0.0 (*)
|    \--- com.google.code.gson:gson:2.8.5
+--- project :react-native-snackbar
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.0.0
|         +--- androidx.annotation:annotation:1.0.0
|         +--- androidx.core:core:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|         +--- androidx.fragment:fragment:1.0.0 (*)
|         +--- androidx.transition:transition:1.0.0
|         |    +--- androidx.annotation:annotation:1.0.0
|         |    \--- androidx.core:core:1.0.0 (*)
|         +--- androidx.appcompat:appcompat:1.0.0 (*)
|         +--- androidx.cardview:cardview:1.0.0
|         |    \--- androidx.annotation:annotation:1.0.0
|         \--- androidx.recyclerview:recyclerview:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0 (*)
|              \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
|    \--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- project :react-native-localize
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
\--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0

debugRuntimeElements - Runtime elements for debug (n)
No dependencies

debugRuntimeOnly - Runtime only dependencies for 'debug' sources. (n)
No dependencies

debugUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugUnitTest
No dependencies

debugUnitTestCompileClasspath - Resolved configuration for compilation for variant: debugUnitTest
+--- com.facebook.react:react-native:{strictly 0.59.9} -> 0.59.9 (c)
+--- com.facebook.infer.annotation:infer-annotation:{strictly 0.11.2} -> 0.11.2 (c)
+--- com.google.code.findbugs:jsr305:{strictly 3.0.2} -> 3.0.2 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
+--- com.facebook.fresco:fresco:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:fbcore:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:drawee:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline-base:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.soloader:soloader:{strictly 0.6.0} -> 0.6.0 (c)
+--- com.parse.bolts:bolts-tasks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.fresco:imagepipeline-okhttp3:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.12.1} -> 3.12.1 (c)
+--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.12.1} -> 3.12.1 (c)
+--- androidx.appcompat:appcompat:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.annotation:annotation:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.core:core:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.fragment:fragment:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-location:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-places-placereport:{strictly 16.0.0} -> 16.0.0 (c)
+--- cn.carbswang.android:NumberPickerView:{strictly 1.2.0} -> 1.2.0 (c)
+--- org.apache.commons:commons-lang3:{strictly 3.6} -> 3.6 (c)
+--- net.time4j:time4j-android:{strictly 4.2-2018i} -> 4.2-2018i (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-android-sdk:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-core:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.parse.bolts:bolts-android:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.parse.bolts:bolts-applinks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.android:facebook-common:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.google.zxing:core:{strictly 3.3.0} -> 3.3.0 (c)
+--- androidx.browser:browser:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-login:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-share:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-places:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-applinks:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-messenger:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-marketing:{strictly 4.39.0} -> 4.39.0 (c)
+--- project :react-native-haptic-feedback
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |         \--- com.facebook.fresco:imagepipeline-base:1.10.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    \--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |         \--- com.squareup.okio:okio:1.15.0
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
+--- project :react-native-geolocation-service
+--- project :@react-native-community_async-storage
+--- project :react-native-push-notification
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
+--- project :rn-fetch-blob
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
+--- project :react-native-version-number
+--- project :react-native-pdf
+--- project :react-native-snackbar
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- androidx.media:media:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0
|    |    |    \--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
+--- project :react-native-localize
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0
|    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-places-placereport:16.0.0
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
\--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0

debugUnitTestRuntimeClasspath - Resolved configuration for runtime for variant: debugUnitTest
+--- project :react-native-haptic-feedback
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |    |         +--- com.facebook.fresco:imagepipeline-base:1.10.0
|         |    |         |    +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         |    +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         |    \--- com.facebook.fresco:fbcore:1.10.0
|         |    |         +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         \--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         |    \--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    +--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |    |    \--- com.squareup.okio:okio:1.15.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    |    +--- androidx.multidex:multidex:2.0.0
|    |    +--- com.google.firebase:firebase-core:16.0.9
|    |    |    \--- com.google.firebase:firebase-analytics:16.5.0
|    |    |         +--- com.google.android.gms:play-services-measurement:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-ads-identifier:16.0.0
|    |    |         |    |    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0
|    |    |         |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0 (*)
|    |    |         +--- com.google.android.gms:play-services-measurement-api:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    +--- com.google.firebase:firebase-common:16.0.3 -> 18.0.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    \--- com.google.auto.value:auto-value-annotations:1.6.3
|    |    |         |    +--- com.google.firebase:firebase-iid:17.1.2 -> 19.0.1
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    +--- com.google.firebase:firebase-common:18.0.0 (*)
|    |    |         |    |    \--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |         |    |         +--- com.google.android.gms:play-services-base:17.0.0
|    |    |         |    |         |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    |         |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0
|    |    |         |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         \--- com.google.android.gms:play-services-measurement-sdk:16.5.0
|    |    |              +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |              \--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.google.firebase:firebase-perf:17.0.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-clearcut:16.0.0
|    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-phenotype:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-phenotype:16.0.0 (*)
|    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    +--- com.google.firebase:firebase-config:17.0.0
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-abt:17.1.1
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    \--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.google.firebase:firebase-analytics:16.4.0 -> 16.5.0 (*)
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- androidx.multidex:multidex:2.0.0
|    +--- com.crashlytics.sdk.android:crashlytics:2.10.0
|    |    +--- com.crashlytics.sdk.android:beta:1.2.10
|    |    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
|    |    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    |    \--- com.crashlytics.sdk.android:answers:1.4.7
|    |    |         \--- io.fabric.sdk.android:fabric:1.4.8
|    |    \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
|    +--- com.crashlytics.sdk.android:crashlytics-ndk:2.0.5
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.6.4 -> 2.7.0 (*)
|    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    \--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-maps:16.1.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.maps.android:android-maps-utils:0.5
+--- project :react-native-geolocation-service
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.google.android.gms:play-services-location:11.4.2 -> 16.0.0
|         +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-places-placereport:16.0.0
|         |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- project :@react-native-community_async-storage
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-push-notification
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.android.gms:play-services-gcm:+ -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-iid:[17.0.0] -> 17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    +--- me.leolin:ShortcutBadger:1.1.8
|    \--- com.google.firebase:firebase-messaging:+ -> 19.0.1
|         +--- androidx.collection:collection:1.0.0 (*)
|         +--- androidx.core:core:1.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|         +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.firebase:firebase-common:18.0.0 (*)
|         +--- com.google.firebase:firebase-iid:[19.0.1] -> 19.0.1 (*)
|         \--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :rn-fetch-blob
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-version-number
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-pdf
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.github.barteksc:android-pdf-viewer:3.1.0-beta.1
|    |    +--- com.github.barteksc:pdfium-android:1.9.0
|    |    |    \--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |         +--- androidx.core:core:1.0.0 (*)
|    |    |         +--- androidx.media:media:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |         \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- androidx.core:core:1.0.0 (*)
|    \--- com.google.code.gson:gson:2.8.5
+--- project :react-native-snackbar
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.0.0
|         +--- androidx.annotation:annotation:1.0.0
|         +--- androidx.core:core:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|         +--- androidx.fragment:fragment:1.0.0 (*)
|         +--- androidx.transition:transition:1.0.0
|         |    +--- androidx.annotation:annotation:1.0.0
|         |    \--- androidx.core:core:1.0.0 (*)
|         +--- androidx.appcompat:appcompat:1.0.0 (*)
|         +--- androidx.cardview:cardview:1.0.0
|         |    \--- androidx.annotation:annotation:1.0.0
|         \--- androidx.recyclerview:recyclerview:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0 (*)
|              \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
|    \--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- project :react-native-localize
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
\--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0

debugWearApp - Link to a wear app to embed for object 'debug'. (n)
No dependencies

debugWearBundling - Resolved Configuration for wear app bundling for variant: debug
No dependencies

default - Configuration for default artifacts.
No dependencies

implementation - Implementation only dependencies for 'main' sources. (n)
+--- project react-native-haptic-feedback (n)
+--- project @react-native-community_netinfo (n)
+--- project @react-native-firebase_perf (n)
+--- project @react-native-firebase_utils (n)
+--- project react-native-gesture-handler (n)
+--- project @react-native-firebase_analytics (n)
+--- project @react-native-firebase_crashlytics (n)
+--- project @react-native-firebase_app (n)
+--- project react-native-maps (n)
+--- project react-native-geolocation-service (n)
+--- project @react-native-community_async-storage (n)
+--- project react-native-push-notification (n)
+--- project react-native-sound (n)
+--- project react-native-linear-gradient (n)
+--- project react-native-vector-icons (n)
+--- project rn-fetch-blob (n)
+--- project react-native-voice (n)
+--- project react-native-audio-record (n)
+--- project react-native-svg (n)
+--- project react-native-date-picker (n)
+--- project react-native-restart (n)
+--- project react-native-version-number (n)
+--- project react-native-pdf (n)
+--- project react-native-snackbar (n)
+--- com.facebook.android:facebook-android-sdk:4.39.0 (n)
+--- project react-native-fbsdk (n)
+--- project react-native-localize (n)
+--- unspecified (n)
+--- com.android.support:support-v4:28.0.0 (n)
+--- com.android.support:appcompat-v7:28.0.0 (n)
+--- com.google.android.gms:play-services-location:16.0.0 (n)
+--- com.facebook.react:react-native:+ (n)
\--- com.android.support:multidex:1.0.3 (n)

lintChecks - Configuration to apply external lint check jar
No dependencies

lintClassPath - The lint embedded classpath
\--- com.android.tools.lint:lint-gradle:26.4.1
     +--- com.android.tools:sdk-common:26.4.1
     |    +--- com.android.tools:sdklib:26.4.1
     |    |    +--- com.android.tools.layoutlib:layoutlib-api:26.4.1
     |    |    |    +--- com.android.tools:common:26.4.1
     |    |    |    |    +--- com.android.tools:annotations:26.4.1
     |    |    |    |    +--- com.google.guava:guava:26.0-jre
     |    |    |    |    |    +--- com.google.code.findbugs:jsr305:3.0.2
     |    |    |    |    |    +--- org.checkerframework:checker-qual:2.5.2
     |    |    |    |    |    +--- com.google.errorprone:error_prone_annotations:2.1.3
     |    |    |    |    |    +--- com.google.j2objc:j2objc-annotations:1.1
     |    |    |    |    |    \--- org.codehaus.mojo:animal-sniffer-annotations:1.14
     |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31
     |    |    |    |         +--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31
     |    |    |    |         |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.31
     |    |    |    |         |    \--- org.jetbrains:annotations:13.0
     |    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.31
     |    |    |    |              \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31 (*)
     |    |    |    +--- net.sf.kxml:kxml2:2.3.0
     |    |    |    +--- com.android.tools:annotations:26.4.1
     |    |    |    \--- org.jetbrains:annotations:13.0
     |    |    +--- com.android.tools:dvlib:26.4.1
     |    |    |    \--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.android.tools:repository:26.4.1
     |    |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    |    +--- com.sun.activation:javax.activation:1.2.0
     |    |    |    +--- org.apache.commons:commons-compress:1.12
     |    |    |    +--- org.glassfish.jaxb:jaxb-runtime:2.2.11
     |    |    |    |    +--- org.glassfish.jaxb:jaxb-core:2.2.11
     |    |    |    |    |    +--- javax.xml.bind:jaxb-api:2.2.12-b140109.1041
     |    |    |    |    |    +--- org.glassfish.jaxb:txw2:2.2.11
     |    |    |    |    |    \--- com.sun.istack:istack-commons-runtime:2.21
     |    |    |    |    +--- org.jvnet.staxex:stax-ex:1.7.7
     |    |    |    |    \--- com.sun.xml.fastinfoset:FastInfoset:1.2.13
     |    |    |    +--- com.google.jimfs:jimfs:1.1
     |    |    |    |    \--- com.google.guava:guava:18.0 -> 26.0-jre (*)
     |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    |    +--- com.google.code.gson:gson:2.8.0
     |    |    +--- org.apache.commons:commons-compress:1.12
     |    |    +--- org.apache.httpcomponents:httpmime:4.5.6
     |    |    |    \--- org.apache.httpcomponents:httpclient:4.5.6
     |    |    |         +--- org.apache.httpcomponents:httpcore:4.4.10
     |    |    |         +--- commons-logging:commons-logging:1.2
     |    |    |         \--- commons-codec:commons-codec:1.10
     |    |    \--- org.apache.httpcomponents:httpcore:4.4.10
     |    +--- com.android.tools.build:builder-test-api:3.4.1
     |    |    \--- com.android.tools.ddms:ddmlib:26.4.1
     |    |         +--- com.android.tools:common:26.4.1 (*)
     |    |         \--- net.sf.kxml:kxml2:2.3.0
     |    +--- com.android.tools.build:builder-model:3.4.1
     |    |    \--- com.android.tools:annotations:26.4.1
     |    +--- com.android.tools.ddms:ddmlib:26.4.1 (*)
     |    +--- org.bouncycastle:bcpkix-jdk15on:1.56
     |    |    \--- org.bouncycastle:bcprov-jdk15on:1.56
     |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.31 (*)
     |    +--- com.google.protobuf:protobuf-java:3.4.0
     |    \--- javax.inject:javax.inject:1
     +--- com.android.tools.build:builder:3.4.1
     |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    +--- com.android.tools.build:builder-test-api:3.4.1 (*)
     |    +--- com.android.tools:sdklib:26.4.1 (*)
     |    +--- com.android.tools:sdk-common:26.4.1 (*)
     |    +--- com.android.tools:common:26.4.1 (*)
     |    +--- com.android.tools.build:manifest-merger:26.4.1
     |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.android.tools:sdklib:26.4.1 (*)
     |    |    +--- com.android.tools:sdk-common:26.4.1 (*)
     |    |    +--- com.google.code.gson:gson:2.8.0
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    |    \--- net.sf.kxml:kxml2:2.3.0
     |    +--- com.android.tools.ddms:ddmlib:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:protos:26.4.1
     |    |    \--- com.google.protobuf:protobuf-java:3.4.0
     |    +--- com.android.tools.analytics-library:shared:26.4.1
     |    |    +--- com.android.tools.analytics-library:protos:26.4.1 (*)
     |    |    +--- com.android.tools:annotations:26.4.1
     |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    +--- com.google.code.gson:gson:2.8.0
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- com.android.tools.analytics-library:tracker:26.4.1
     |    |    +--- com.android.tools:annotations:26.4.1
     |    |    +--- com.android.tools:common:26.4.1 (*)
     |    |    +--- com.android.tools.analytics-library:protos:26.4.1 (*)
     |    |    +--- com.android.tools.analytics-library:shared:26.4.1 (*)
     |    |    +--- com.google.protobuf:protobuf-java:3.4.0
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- com.android.tools.build:apksig:3.4.1
     |    +--- com.android.tools.build:apkzlib:3.4.1
     |    |    +--- com.google.code.findbugs:jsr305:1.3.9 -> 3.0.2
     |    |    +--- com.google.guava:guava:23.0 -> 26.0-jre (*)
     |    |    +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
     |    |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    |    \--- com.android.tools.build:apksig:3.4.1
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- com.squareup:javawriter:2.5.0
     |    +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
     |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    +--- org.ow2.asm:asm:6.0
     |    +--- org.ow2.asm:asm-tree:6.0
     |    |    \--- org.ow2.asm:asm:6.0
     |    +--- javax.inject:javax.inject:1
     |    +--- org.ow2.asm:asm-commons:6.0
     |    |    \--- org.ow2.asm:asm-tree:6.0 (*)
     |    +--- org.ow2.asm:asm-util:6.0
     |    |    \--- org.ow2.asm:asm-tree:6.0 (*)
     |    +--- it.unimi.dsi:fastutil:7.2.0
     |    +--- net.sf.jopt-simple:jopt-simple:4.9
     |    \--- com.googlecode.json-simple:json-simple:1.1
     +--- com.android.tools.build:builder-model:3.4.1 (*)
     +--- com.android.tools.external.com-intellij:intellij-core:26.4.1
     |    \--- org.jetbrains.trove4j:trove4j:20160824
     +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     +--- com.android.tools.build:manifest-merger:26.4.1 (*)
     +--- com.android.tools.lint:lint:26.4.1
     |    +--- com.android.tools.lint:lint-checks:26.4.1
     |    |    +--- com.android.tools.lint:lint-api:26.4.1
     |    |    |    +--- com.android.tools:sdk-common:26.4.1 (*)
     |    |    |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    |    +--- com.android.tools.external.com-intellij:intellij-core:26.4.1 (*)
     |    |    |    +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     |    |    |    +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     |    |    |    +--- com.android.tools.build:manifest-merger:26.4.1 (*)
     |    |    |    +--- org.ow2.asm:asm:6.0
     |    |    |    +--- org.ow2.asm:asm-tree:6.0 (*)
     |    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    +--- com.android.tools.external.com-intellij:intellij-core:26.4.1 (*)
     |    |    +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     |    |    +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     |    |    \--- org.ow2.asm:asm-analysis:6.0
     |    |         \--- org.ow2.asm:asm-tree:6.0 (*)
     |    +--- com.google.guava:guava:26.0-jre (*)
     |    +--- com.android.tools.external.org-jetbrains:uast:26.4.1
     |    +--- com.android.tools.external.com-intellij:kotlin-compiler:26.4.1
     |    +--- com.android.tools.build:manifest-merger:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:shared:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:protos:26.4.1 (*)
     |    +--- com.android.tools.analytics-library:tracker:26.4.1 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     +--- com.android.tools.lint:lint-gradle-api:26.4.1
     |    +--- com.android.tools:sdklib:26.4.1 (*)
     |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    +--- com.android.tools.build:gradle-api:3.4.1
     |    |    +--- com.android.tools.build:builder-model:3.4.1 (*)
     |    |    +--- com.android.tools.build:builder-test-api:3.4.1 (*)
     |    |    +--- com.google.guava:guava:26.0-jre (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)
     |    \--- com.google.guava:guava:26.0-jre (*)
     +--- org.codehaus.groovy:groovy-all:2.4.15
     +--- org.jetbrains.kotlin:kotlin-reflect:1.3.31 (*)
     \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31 (*)

lintPublish - Configuration to publish external lint check jar
No dependencies

provided - Provided dependencies for 'main' sources (deprecated: use 'compileOnly' instead). (n)
No dependencies

releaseAnnotationProcessor - Classpath for the annotation processor for 'release'. (n)
No dependencies

releaseAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: release
No dependencies

releaseApi - API dependencies for 'release' sources. (n)
No dependencies

releaseApiElements - API elements for release (n)
No dependencies

releaseApk - Apk dependencies for 'release' sources (deprecated: use 'releaseRuntimeOnly' instead). (n)
No dependencies

releaseBundleElements - Bundle elements for release (n)
No dependencies

releaseCompile - Compile dependencies for 'release' sources (deprecated: use 'releaseImplementation' instead). (n)
No dependencies

releaseCompileClasspath - Resolved configuration for compilation for variant: release
+--- project :react-native-haptic-feedback
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |         \--- com.facebook.fresco:imagepipeline-base:1.10.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    \--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |         \--- com.squareup.okio:okio:1.15.0
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
+--- project :react-native-geolocation-service
+--- project :@react-native-community_async-storage
+--- project :react-native-push-notification
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
+--- project :rn-fetch-blob
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
+--- project :react-native-version-number
+--- project :react-native-pdf
+--- project :react-native-snackbar
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- androidx.media:media:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0
|    |    |    \--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
+--- project :react-native-localize
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0
|    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-places-placereport:16.0.0
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
+--- androidx.multidex:multidex:2.0.0
+--- com.facebook.react:react-native:{strictly 0.59.9} -> 0.59.9 (c)
+--- com.facebook.infer.annotation:infer-annotation:{strictly 0.11.2} -> 0.11.2 (c)
+--- com.google.code.findbugs:jsr305:{strictly 3.0.2} -> 3.0.2 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
+--- com.facebook.fresco:fresco:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:fbcore:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:drawee:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline-base:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.soloader:soloader:{strictly 0.6.0} -> 0.6.0 (c)
+--- com.parse.bolts:bolts-tasks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.fresco:imagepipeline-okhttp3:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.12.1} -> 3.12.1 (c)
+--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.12.1} -> 3.12.1 (c)
+--- androidx.appcompat:appcompat:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.annotation:annotation:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.core:core:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.fragment:fragment:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
+--- com.google.android.gms:play-services-location:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-places-placereport:{strictly 16.0.0} -> 16.0.0 (c)
+--- cn.carbswang.android:NumberPickerView:{strictly 1.2.0} -> 1.2.0 (c)
+--- org.apache.commons:commons-lang3:{strictly 3.6} -> 3.6 (c)
+--- net.time4j:time4j-android:{strictly 4.2-2018i} -> 4.2-2018i (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-android-sdk:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-core:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.parse.bolts:bolts-android:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.parse.bolts:bolts-applinks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.android:facebook-common:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.google.zxing:core:{strictly 3.3.0} -> 3.3.0 (c)
+--- androidx.browser:browser:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-login:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-share:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-places:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-applinks:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-messenger:{strictly 4.39.0} -> 4.39.0 (c)
\--- com.facebook.android:facebook-marketing:{strictly 4.39.0} -> 4.39.0 (c)

releaseCompileOnly - Compile only dependencies for 'release' sources. (n)
No dependencies

releaseImplementation - Implementation only dependencies for 'release' sources. (n)
No dependencies

releaseMetadataElements (n)
No dependencies

releaseMetadataValues - Metadata Values dependencies for the base Split
No dependencies

releaseProvided - Provided dependencies for 'release' sources (deprecated: use 'releaseCompileOnly' instead). (n)
No dependencies

releaseRuntimeClasspath - Resolved configuration for runtime for variant: release
+--- project :react-native-haptic-feedback
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |    |         +--- com.facebook.fresco:imagepipeline-base:1.10.0
|         |    |         |    +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         |    +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         |    \--- com.facebook.fresco:fbcore:1.10.0
|         |    |         +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         \--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         |    \--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    +--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |    |    \--- com.squareup.okio:okio:1.15.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    |    +--- com.google.firebase:firebase-core:16.0.9
|    |    |    \--- com.google.firebase:firebase-analytics:16.5.0
|    |    |         +--- com.google.android.gms:play-services-measurement:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-ads-identifier:16.0.0
|    |    |         |    |    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0
|    |    |         |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0 (*)
|    |    |         +--- com.google.android.gms:play-services-measurement-api:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    +--- com.google.firebase:firebase-common:16.0.3 -> 18.0.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    \--- com.google.auto.value:auto-value-annotations:1.6.3
|    |    |         |    +--- com.google.firebase:firebase-iid:17.1.2 -> 19.0.1
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    +--- com.google.firebase:firebase-common:18.0.0 (*)
|    |    |         |    |    \--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |         |    |         +--- com.google.android.gms:play-services-base:17.0.0
|    |    |         |    |         |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    |         |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0
|    |    |         |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         \--- com.google.android.gms:play-services-measurement-sdk:16.5.0
|    |    |              +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |              \--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    |    \--- androidx.multidex:multidex:2.0.0
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.firebase:firebase-perf:17.0.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-clearcut:16.0.0
|    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-phenotype:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-phenotype:16.0.0 (*)
|    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    +--- com.google.firebase:firebase-config:17.0.0
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-abt:17.1.1
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    \--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.firebase:firebase-analytics:16.4.0 -> 16.5.0 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.crashlytics.sdk.android:crashlytics:2.10.0
|    |    +--- com.crashlytics.sdk.android:beta:1.2.10
|    |    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
|    |    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    |    \--- com.crashlytics.sdk.android:answers:1.4.7
|    |    |         \--- io.fabric.sdk.android:fabric:1.4.8
|    |    \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
|    +--- com.crashlytics.sdk.android:crashlytics-ndk:2.0.5
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.6.4 -> 2.7.0 (*)
|    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-maps:16.1.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.maps.android:android-maps-utils:0.5
+--- project :react-native-geolocation-service
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.google.android.gms:play-services-location:11.4.2 -> 16.0.0
|         +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-places-placereport:16.0.0
|         |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- project :@react-native-community_async-storage
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-push-notification
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.android.gms:play-services-gcm:+ -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-iid:[17.0.0] -> 17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    +--- me.leolin:ShortcutBadger:1.1.8
|    \--- com.google.firebase:firebase-messaging:+ -> 19.0.1
|         +--- androidx.collection:collection:1.0.0 (*)
|         +--- androidx.core:core:1.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|         +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.firebase:firebase-common:18.0.0 (*)
|         +--- com.google.firebase:firebase-iid:[19.0.1] -> 19.0.1 (*)
|         \--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :rn-fetch-blob
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-version-number
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-pdf
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.github.barteksc:android-pdf-viewer:3.1.0-beta.1
|    |    +--- com.github.barteksc:pdfium-android:1.9.0
|    |    |    \--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |         +--- androidx.core:core:1.0.0 (*)
|    |    |         +--- androidx.media:media:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |         \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- androidx.core:core:1.0.0 (*)
|    \--- com.google.code.gson:gson:2.8.5
+--- project :react-native-snackbar
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.0.0
|         +--- androidx.annotation:annotation:1.0.0
|         +--- androidx.core:core:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|         +--- androidx.fragment:fragment:1.0.0 (*)
|         +--- androidx.transition:transition:1.0.0
|         |    +--- androidx.annotation:annotation:1.0.0
|         |    \--- androidx.core:core:1.0.0 (*)
|         +--- androidx.appcompat:appcompat:1.0.0 (*)
|         +--- androidx.cardview:cardview:1.0.0
|         |    \--- androidx.annotation:annotation:1.0.0
|         \--- androidx.recyclerview:recyclerview:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0 (*)
|              \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
|    \--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- project :react-native-localize
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
\--- androidx.multidex:multidex:2.0.0

releaseRuntimeElements - Runtime elements for release (n)
No dependencies

releaseRuntimeOnly - Runtime only dependencies for 'release' sources. (n)
No dependencies

releaseUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: releaseUnitTest
No dependencies

releaseUnitTestCompileClasspath - Resolved configuration for compilation for variant: releaseUnitTest
+--- project :react-native-haptic-feedback
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |         \--- com.facebook.fresco:imagepipeline-base:1.10.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    \--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |         \--- com.squareup.okio:okio:1.15.0
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
+--- project :react-native-geolocation-service
+--- project :@react-native-community_async-storage
+--- project :react-native-push-notification
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
+--- project :rn-fetch-blob
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
+--- project :react-native-version-number
+--- project :react-native-pdf
+--- project :react-native-snackbar
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- androidx.media:media:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0
|    |    |    \--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    \--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
+--- project :react-native-localize
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0
|    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-places-placereport:16.0.0
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0
+--- com.facebook.react:react-native:{strictly 0.59.9} -> 0.59.9 (c)
+--- com.facebook.infer.annotation:infer-annotation:{strictly 0.11.2} -> 0.11.2 (c)
+--- com.google.code.findbugs:jsr305:{strictly 3.0.2} -> 3.0.2 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
+--- com.facebook.fresco:fresco:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:fbcore:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:drawee:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.fresco:imagepipeline-base:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.facebook.soloader:soloader:{strictly 0.6.0} -> 0.6.0 (c)
+--- com.parse.bolts:bolts-tasks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.fresco:imagepipeline-okhttp3:{strictly 1.10.0} -> 1.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.12.1} -> 3.12.1 (c)
+--- com.squareup.okio:okio:{strictly 1.15.0} -> 1.15.0 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.12.1} -> 3.12.1 (c)
+--- androidx.appcompat:appcompat:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.annotation:annotation:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.core:core:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-common:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.0.0} -> 2.0.0 (c)
+--- androidx.localbroadcastmanager:localbroadcastmanager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.print:print:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.fragment:fragment:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.slidingpanelayout:slidingpanelayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.interpolator:interpolator:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.swiperefreshlayout:swiperefreshlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.asynclayoutinflater:asynclayoutinflater:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.0.0} -> 17.0.0 (c)
+--- androidx.multidex:multidex:{strictly 2.0.0} -> 2.0.0 (c)
+--- com.google.android.gms:play-services-location:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.android.gms:play-services-places-placereport:{strictly 16.0.0} -> 16.0.0 (c)
+--- cn.carbswang.android:NumberPickerView:{strictly 1.2.0} -> 1.2.0 (c)
+--- org.apache.commons:commons-lang3:{strictly 3.6} -> 3.6 (c)
+--- net.time4j:time4j-android:{strictly 4.2-2018i} -> 4.2-2018i (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-android-sdk:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-core:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.parse.bolts:bolts-android:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.parse.bolts:bolts-applinks:{strictly 1.4.0} -> 1.4.0 (c)
+--- com.facebook.android:facebook-common:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.google.zxing:core:{strictly 3.3.0} -> 3.3.0 (c)
+--- androidx.browser:browser:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.facebook.android:facebook-login:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-share:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-places:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-applinks:{strictly 4.39.0} -> 4.39.0 (c)
+--- com.facebook.android:facebook-messenger:{strictly 4.39.0} -> 4.39.0 (c)
\--- com.facebook.android:facebook-marketing:{strictly 4.39.0} -> 4.39.0 (c)

releaseUnitTestRuntimeClasspath - Resolved configuration for runtime for variant: releaseUnitTest
+--- project :react-native-haptic-feedback
|    \--- com.facebook.react:react-native:+ -> 0.59.9
|         +--- com.facebook.infer.annotation:infer-annotation:0.11.2
|         |    \--- com.google.code.findbugs:jsr305:3.0.1 -> 3.0.2
|         +--- javax.inject:javax.inject:1
|         +--- com.facebook.fresco:fresco:1.10.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:drawee:1.10.0
|         |    |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    |    \--- com.facebook.fresco:imagepipeline:1.10.0
|         |    |         +--- com.facebook.fresco:imagepipeline-base:1.10.0
|         |    |         |    +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         |    +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         |    \--- com.facebook.fresco:fbcore:1.10.0
|         |    |         +--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         |    |         +--- com.parse.bolts:bolts-tasks:1.4.0
|         |    |         \--- com.facebook.fresco:fbcore:1.10.0
|         |    +--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         |    \--- com.facebook.soloader:soloader:0.5.0 -> 0.6.0
|         +--- com.facebook.fresco:imagepipeline-okhttp3:1.10.0
|         |    +--- com.squareup.okhttp3:okhttp:3.10.0 -> 3.12.1
|         |    |    \--- com.squareup.okio:okio:1.15.0
|         |    +--- com.facebook.fresco:fbcore:1.10.0
|         |    \--- com.facebook.fresco:imagepipeline:1.10.0 (*)
|         +--- com.facebook.soloader:soloader:0.6.0
|         +--- com.google.code.findbugs:jsr305:3.0.2
|         +--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okhttp3:okhttp-urlconnection:3.12.1
|         |    \--- com.squareup.okhttp3:okhttp:3.12.1 (*)
|         +--- com.squareup.okio:okio:1.15.0
|         \--- androidx.appcompat:appcompat:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.collection:collection:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0
|              |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.arch.core:core-common:2.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0
|              |         +--- androidx.annotation:annotation:1.0.0
|              |         \--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.collection:collection:1.0.0 (*)
|              +--- androidx.cursoradapter:cursoradapter:1.0.0
|              |    \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.legacy:legacy-support-core-utils:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.documentfile:documentfile:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0
|              |    |    |    +--- androidx.arch.core:core-runtime:2.0.0
|              |    |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
|              |    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
|              |    |    |    |    +--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    |    |    \--- androidx.arch.core:core-runtime:2.0.0 (*)
|              |    |    |    \--- androidx.arch.core:core-common:2.0.0 (*)
|              |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
|              |    |         \--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|              |    |    \--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.print:print:1.0.0
|              |         \--- androidx.annotation:annotation:1.0.0
|              +--- androidx.fragment:fragment:1.0.0
|              |    +--- androidx.core:core:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|              |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    |    +--- androidx.customview:customview:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    +--- androidx.viewpager:viewpager:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|              |    |    +--- androidx.interpolator:interpolator:1.0.0
|              |    |    |    \--- androidx.annotation:annotation:1.0.0
|              |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    +--- androidx.core:core:1.0.0 (*)
|              |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|              |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|              |    |    |    +--- androidx.annotation:annotation:1.0.0
|              |    |    |    \--- androidx.core:core:1.0.0 (*)
|              |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|              |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    +--- androidx.loader:loader:1.0.0 (*)
|              |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
|              +--- androidx.vectordrawable:vectordrawable:1.0.0
|              |    +--- androidx.annotation:annotation:1.0.0
|              |    \--- androidx.core:core:1.0.0 (*)
|              \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
|                   +--- androidx.vectordrawable:vectordrawable:1.0.0 (*)
|                   \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- project :@react-native-community_netinfo
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :@react-native-firebase_perf
|    +--- project :@react-native-firebase_app
|    |    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    |    +--- com.google.firebase:firebase-core:16.0.9
|    |    |    \--- com.google.firebase:firebase-analytics:16.5.0
|    |    |         +--- com.google.android.gms:play-services-measurement:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    \--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-ads-identifier:16.0.0
|    |    |         |    |    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0
|    |    |         |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.android.gms:play-services-stats:16.0.1 -> 17.0.0 (*)
|    |    |         +--- com.google.android.gms:play-services-measurement-api:16.5.0
|    |    |         |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |         |    |    \--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |         |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0
|    |    |         |    |    \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    +--- com.google.firebase:firebase-common:16.0.3 -> 18.0.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    \--- com.google.auto.value:auto-value-annotations:1.6.3
|    |    |         |    +--- com.google.firebase:firebase-iid:17.1.2 -> 19.0.1
|    |    |         |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |         |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |    +--- com.google.firebase:firebase-common:18.0.0 (*)
|    |    |         |    |    \--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |         |    |         +--- com.google.android.gms:play-services-base:17.0.0
|    |    |         |    |         |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    |         |    +--- androidx.fragment:fragment:1.0.0 (*)
|    |    |         |    |         |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    |         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |         |    |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0
|    |    |         |         \--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |         \--- com.google.android.gms:play-services-measurement-sdk:16.5.0
|    |    |              +--- com.google.android.gms:play-services-basement:16.2.0 -> 17.0.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-base:[16.5.0] -> 16.5.0 (*)
|    |    |              +--- com.google.android.gms:play-services-measurement-impl:[16.5.0] -> 16.5.0 (*)
|    |    |              \--- com.google.android.gms:play-services-measurement-sdk-api:[16.5.0] -> 16.5.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    |    \--- androidx.multidex:multidex:2.0.0
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.firebase:firebase-perf:17.0.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-clearcut:16.0.0
|    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-phenotype:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-phenotype:16.0.0 (*)
|    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    +--- com.google.firebase:firebase-config:17.0.0
|    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-abt:17.1.1
|    |    |    |    +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:17.0.0 -> 18.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    |    |    \--- com.google.firebase:firebase-measurement-connector:17.0.1 -> 18.0.0 (*)
|    |    \--- com.google.firebase:firebase-iid:18.0.0 -> 19.0.1 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :@react-native-firebase_utils
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :react-native-gesture-handler
+--- project :@react-native-firebase_analytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.firebase:firebase-analytics:16.4.0 -> 16.5.0 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :@react-native-firebase_crashlytics
|    +--- project :@react-native-firebase_app (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.crashlytics.sdk.android:crashlytics:2.10.0
|    |    +--- com.crashlytics.sdk.android:beta:1.2.10
|    |    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.7.0
|    |    |    +--- io.fabric.sdk.android:fabric:1.4.8
|    |    |    \--- com.crashlytics.sdk.android:answers:1.4.7
|    |    |         \--- io.fabric.sdk.android:fabric:1.4.8
|    |    \--- com.crashlytics.sdk.android:answers:1.4.7 (*)
|    +--- com.crashlytics.sdk.android:crashlytics-ndk:2.0.5
|    |    +--- com.crashlytics.sdk.android:crashlytics-core:2.6.4 -> 2.7.0 (*)
|    |    \--- io.fabric.sdk.android:fabric:1.4.4 -> 1.4.8
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    \--- androidx.multidex:multidex:2.0.0
+--- project :@react-native-firebase_app (*)
+--- project :react-native-maps
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.google.android.gms:play-services-base:16.1.0 -> 17.0.0 (*)
|    +--- com.google.android.gms:play-services-maps:16.1.0
|    |    +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|    \--- com.google.maps.android:android-maps-utils:0.5
+--- project :react-native-geolocation-service
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.google.android.gms:play-services-location:11.4.2 -> 16.0.0
|         +--- com.google.android.gms:play-services-base:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         +--- com.google.android.gms:play-services-places-placereport:16.0.0
|         |    \--- com.google.android.gms:play-services-basement:16.0.1 -> 17.0.0 (*)
|         \--- com.google.android.gms:play-services-tasks:16.0.1 -> 17.0.0 (*)
+--- project :@react-native-community_async-storage
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-push-notification
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.google.android.gms:play-services-gcm:+ -> 17.0.0
|    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    +--- androidx.core:core:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    +--- com.google.android.gms:play-services-iid:[17.0.0] -> 17.0.0
|    |    |    +--- androidx.collection:collection:1.0.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-base:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    \--- com.google.android.gms:play-services-stats:17.0.0 (*)
|    +--- me.leolin:ShortcutBadger:1.1.8
|    \--- com.google.firebase:firebase-messaging:+ -> 19.0.1
|         +--- androidx.collection:collection:1.0.0 (*)
|         +--- androidx.core:core:1.0.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.0.0 (*)
|         +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.firebase:firebase-common:18.0.0 (*)
|         +--- com.google.firebase:firebase-iid:[19.0.1] -> 19.0.1 (*)
|         \--- com.google.firebase:firebase-measurement-connector:18.0.0 (*)
+--- project :react-native-sound
+--- project :react-native-linear-gradient
+--- project :react-native-vector-icons
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :rn-fetch-blob
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-voice
|    +--- com.android.support:appcompat-v7:23.1.1 -> androidx.appcompat:appcompat:1.0.0 (*)
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-audio-record
+--- project :react-native-svg
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-date-picker
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- cn.carbswang.android:NumberPickerView:1.2.0
|    +--- org.apache.commons:commons-lang3:3.6
|    \--- net.time4j:time4j-android:4.2-2018i
+--- project :react-native-restart
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-version-number
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- project :react-native-pdf
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.github.barteksc:android-pdf-viewer:3.1.0-beta.1
|    |    +--- com.github.barteksc:pdfium-android:1.9.0
|    |    |    \--- androidx.legacy:legacy-support-v4:1.0.0
|    |    |         +--- androidx.core:core:1.0.0 (*)
|    |    |         +--- androidx.media:media:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0
|    |    |         |    +--- androidx.core:core:1.0.0 (*)
|    |    |         |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    |    |         \--- androidx.fragment:fragment:1.0.0 (*)
|    |    \--- androidx.core:core:1.0.0 (*)
|    \--- com.google.code.gson:gson:2.8.5
+--- project :react-native-snackbar
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.0.0
|         +--- androidx.annotation:annotation:1.0.0
|         +--- androidx.core:core:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|         +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|         +--- androidx.fragment:fragment:1.0.0 (*)
|         +--- androidx.transition:transition:1.0.0
|         |    +--- androidx.annotation:annotation:1.0.0
|         |    \--- androidx.core:core:1.0.0 (*)
|         +--- androidx.appcompat:appcompat:1.0.0 (*)
|         +--- androidx.cardview:cardview:1.0.0
|         |    \--- androidx.annotation:annotation:1.0.0
|         \--- androidx.recyclerview:recyclerview:1.0.0
|              +--- androidx.annotation:annotation:1.0.0
|              +--- androidx.core:core:1.0.0 (*)
|              \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- com.facebook.android:facebook-android-sdk:4.39.0
|    +--- com.facebook.android:facebook-core:4.39.0
|    |    +--- com.parse.bolts:bolts-android:1.4.0
|    |    |    +--- com.parse.bolts:bolts-tasks:1.4.0
|    |    |    \--- com.parse.bolts:bolts-applinks:1.4.0
|    |    |         \--- com.parse.bolts:bolts-tasks:1.4.0
|    |    +--- androidx.annotation:annotation:1.0.0
|    |    \--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- com.facebook.android:facebook-common:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.google.zxing:core:3.3.0
|    |    +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
|    |    +--- androidx.appcompat:appcompat:1.0.0 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    \--- androidx.browser:browser:1.0.0
|    |         +--- androidx.core:core:1.0.0 (*)
|    |         +--- androidx.annotation:annotation:1.0.0
|    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |         +--- androidx.collection:collection:1.0.0 (*)
|    |         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- com.facebook.android:facebook-login:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    +--- com.facebook.android:facebook-common:4.39.0 (*)
|    |    \--- androidx.appcompat:appcompat:1.0.0 (*)
|    +--- com.facebook.android:facebook-share:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.facebook.android:facebook-common:4.39.0 (*)
|    +--- com.facebook.android:facebook-places:4.39.0
|    |    \--- com.facebook.android:facebook-core:4.39.0 (*)
|    +--- com.facebook.android:facebook-applinks:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    +--- com.facebook.android:facebook-messenger:4.39.0
|    |    +--- com.facebook.android:facebook-core:4.39.0 (*)
|    |    \--- com.parse.bolts:bolts-android:1.4.0 (*)
|    \--- com.facebook.android:facebook-marketing:4.39.0
|         +--- com.facebook.android:facebook-core:4.39.0 (*)
|         \--- androidx.annotation:annotation:1.0.0
+--- project :react-native-fbsdk
|    +--- com.facebook.react:react-native:+ -> 0.59.9 (*)
|    +--- com.facebook.android:facebook-android-sdk:4.34.0 -> 4.39.0 (*)
|    \--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- project :react-native-localize
|    \--- com.facebook.react:react-native:+ -> 0.59.9 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.0.0 (*)
+--- com.google.android.gms:play-services-location:16.0.0 (*)
+--- com.facebook.react:react-native:+ -> 0.59.9 (*)
\--- com.android.support:multidex:1.0.3 -> androidx.multidex:multidex:2.0.0

releaseWearApp - Link to a wear app to embed for object 'release'. (n)
No dependencies

releaseWearBundling - Resolved Configuration for wear app bundling for variant: release
No dependencies

runtimeOnly - Runtime only dependencies for 'main' sources. (n)
No dependencies

testAnnotationProcessor - Classpath for the annotation processor for 'test'. (n)
No dependencies

testApi - API dependencies for 'test' sources. (n)
No dependencies

testApk - Apk dependencies for 'test' sources (deprecated: use 'testRuntimeOnly' instead). (n)
No dependencies

testCompile - Compile dependencies for 'test' sources (deprecated: use 'testImplementation' instead).
No dependencies

testCompileOnly - Compile only dependencies for 'test' sources. (n)
No dependencies

testDebugAnnotationProcessor - Classpath for the annotation processor for 'testDebug'. (n)
No dependencies

testDebugApi - API dependencies for 'testDebug' sources. (n)
No dependencies

testDebugApk - Apk dependencies for 'testDebug' sources (deprecated: use 'testDebugRuntimeOnly' instead). (n)
No dependencies

testDebugCompile - Compile dependencies for 'testDebug' sources (deprecated: use 'testDebugImplementation' instead). (n)
No dependencies

testDebugCompileOnly - Compile only dependencies for 'testDebug' sources. (n)
No dependencies

testDebugImplementation - Implementation only dependencies for 'testDebug' sources. (n)
No dependencies

testDebugProvided - Provided dependencies for 'testDebug' sources (deprecated: use 'testDebugCompileOnly' instead). (n)
No dependencies

testDebugRuntimeOnly - Runtime only dependencies for 'testDebug' sources. (n)
No dependencies

testDebugWearApp - Link to a wear app to embed for object 'testDebug'. (n)
No dependencies

testImplementation - Implementation only dependencies for 'test' sources. (n)
No dependencies

testProvided - Provided dependencies for 'test' sources (deprecated: use 'testCompileOnly' instead). (n)
No dependencies

testReleaseAnnotationProcessor - Classpath for the annotation processor for 'testRelease'. (n)
No dependencies

testReleaseApi - API dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseApk - Apk dependencies for 'testRelease' sources (deprecated: use 'testReleaseRuntimeOnly' instead). (n)
No dependencies

testReleaseCompile - Compile dependencies for 'testRelease' sources (deprecated: use 'testReleaseImplementation' instead). (n)
No dependencies

testReleaseCompileOnly - Compile only dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseImplementation - Implementation only dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseProvided - Provided dependencies for 'testRelease' sources (deprecated: use 'testReleaseCompileOnly' instead). (n)
No dependencies

testReleaseRuntimeOnly - Runtime only dependencies for 'testRelease' sources. (n)
No dependencies

testReleaseWearApp - Link to a wear app to embed for object 'testRelease'. (n)
No dependencies

testRuntimeOnly - Runtime only dependencies for 'test' sources. (n)
No dependencies

testWearApp - Link to a wear app to embed for object 'test'. (n)
No dependencies

wearApp - Link to a wear app to embed for object 'main'. (n)
No dependencies

(c) - dependency constraint
(*) - dependencies omitted (listed previously)

(n) - Not resolved (configuration is not meant to be resolved)

A web-based, searchable dependency report is available by adding the --scan option.

BUILD SUCCESSFUL in 2s
1 actionable task: 1 executed
19:59:57: Task execution finished 'dependencies'.

What I have found as well is that enabling crashlytics in js crashlytics().setCrashlyticsCollectionEnabled(true); will make all subsequent calls work. (because it is then initialized in https://github.com/invertase/react-native-firebase/blob/7f11a9e501f43d3ba4d6aec7479d1cb234cd18d4/packages/crashlytics/android/src/main/java/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.java#L66

Interesting - not sure if it’s possible on v6 - apologies again I am on v5 - but if you are AndroidX and using jetifier I think you can try the most recent AndroidX firebase libraries. They should work (I tested them with v5 + jetifier and they seemed okay?) - when I made the v5.4->v5.5 breaking changes that made it possible to adopt the newer underlying SDK releases, I checked v6 and I think all the required changes were in place already. Not sure if that will have an effect or not though

Just checked the version I'm using and it is already 19.0.1 (so the latest version as far as I know)

It might also be using crashlytics().*() in a wrong way -> I've now updated my code to only call any method IF crashlytics().isCrashlyticsCollectionEnabled is true.

I think it would be good to ignore the other calls and just spit out a warning if it is not yet enabled. (since it cannot be enabled at runtime like analytics)

@wodka thanks for the report, I think we just need to check if enabled on native and no-op any method calls if disabled - will look at getting a fix in for this soon, thanks!

Glad to see you're using the new firebase.json stuff though ✨

tried out v6 crashlytics, keep getting this error when i am trying to crash app using crashlytics.crash().

one.
2019-07-03 15:56:21.310 12948-13005/? E/AndroidRuntime: FATAL EXCEPTION: mqt_native_modules
    Process: com.example.app, PID: 12948
    java.lang.IllegalStateException: Must Initialize Fabric before using singleton()
        at io.fabric.sdk.android.Fabric.singleton(Fabric.java:301)
        at io.fabric.sdk.android.Fabric.getKit(Fabric.java:551)
        at com.crashlytics.android.Crashlytics.getInstance(Crashlytics.java:191)
        at io.invertase.firebase.crashlytics.ReactNativeFirebaseCrashlyticsModule.crash(ReactNativeFirebaseCrashlyticsModule.java:46)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.facebook.react.bridge.JavaMethodWrapper.invoke(JavaMethodWrapper.java:372)
        at com.facebook.react.bridge.JavaModuleWrapper.invoke(JavaModuleWrapper.java:158)
        at com.facebook.react.bridge.queue.NativeRunnable.run(Native Method)
        at android.os.Handler.handleCallback(Handler.java:790)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:29)
        at android.os.Looper.loop(Looper.java:187)
        at com.facebook.react.bridge.queue.MessageQueueThreadImpl$4.run(MessageQueueThreadImpl.java:232)
        at java.lang.Thread.run(Thread.java:764)

@bakaa99 can you check if crashlytics().isCrashlyticsCollectionEnabled is true in your code?

@wodka i just followed your solution mentioned above and enabled "crashlytics_auto_collection_enabled" in firebase.json.

It's working now. Thx

Hello 👋, to help manage issues we automatically close stale issues.
This issue has been automatically marked as stale because it has not had activity for quite some time. Has this issue been fixed, or does it still require the community's attention?

This issue will be closed in 15 days if no further activity occurs.
Thank you for your contributions.

ok, it is just related to the auto collection:

{
  "react-native": {
    "crashlytics_auto_collection_enabled": false
  }
}

2019-06-30 19:42:55.881 9786-9786/---.debug I/RNFBCrashlyticsInit: auto collection disabled, skipping initialization

Causes the App to crash on any Crashlytics call.

Whereas if I enable the auto_collection the call will work.

Do i have to do the above mentioned in scripts of package.json?
When i mention it in package.json, it didn't work. it was still collecting the crash report!

Will get a fix out for this today

Hey 👋 this issue should now be fixed in v6.0.1, thanks. [release notes]

This happens for me too, with v6.3.4.
firebase.json:

{
    "react-native": {
        "crashlytics_debug_enabled": false,
        "crashlytics_auto_collection_enabled": false,
        "analytics_auto_collection_enabled": false
    }
}

javascript:

await firebase.analytics().setAnalyticsCollectionEnabled(true);
await firebase.analytics().setUserId(installation_uuid);
await firebase.crashlytics().setCrashlyticsCollectionEnabled(true);
await firebase.crashlytics().setUserId(installation_uuid);

result:

Should we reopen this issue? Or is it something that I did not consider?

OK, I found a solution for this. It was actually not specific for setUserId, but also to other crashlytics calls.

The solution was similar to what is described here: https://stackoverflow.com/questions/55344260/react-native-android-firebase-crashlytics-must-initialize-fabric-before-using-s

android/app/build.gradle:

dependencies {
//...
    implementation('com.crashlytics.sdk.android:crashlytics:2.9.9@aar') {
        transitive = true
    }
}

android/app/src/main/java/io/[AppName]/app/MainApplication.java

import com.crashlytics.android.Crashlytics;
import io.fabric.sdk.android.Fabric;

// ...
@Override
  public void onCreate() {
    super.onCreate();
    // add this:
    Fabric.with(this, new Crashlytics());
  }

@Salakar can you reopen this please? I'm in the same situation as @creat-or

For now I need to enable crashlytics by default in firebase.json and disable at runtime if needed

Was this page helpful?
0 / 5 - 0 ratings