OneSignal / OneSignal-Gradle-Plugin

Use with OneSignal-Android-SDK to help integrate it into your Android Studio or Gradle project. https://onesignal.com
Other
64 stars 17 forks source link

Receiver class com.onesignal.androidsdk.GradleProjectPlugin does not define or inherit an implementation of the resolved method 'abstract java.lang.Object getProperty(java.lang.String)' of interface groovy.lang.GroovyObject. #169

Closed iXane closed 2 years ago

iXane commented 3 years ago

Hi!

Hope everyone is well, since last Thursday or so, my project won't compile in android studio. I've been getting the Error on the title, this error comes out immediately. I'm unable to sync gradle, clean or rebuild. the project. Nothing was changed on the project.

The Project is buiilt on Ionic Capacitor 2/Angular.

I've tried many troubleshooting, invalidating cache, changing Gradle and AGP versions, Rebuilding, re-installing, removing node_modules and re-adding everything again, changing versions and nothing will work. I've jettified my proiject, even upgraded to Gradle 7 and while in Gradle 7 it compiles, the rest of the project becomes a mess and doesn't work properly since most of the components mostly run up till Gradle 6.

Upgrading to Capacitor 3 to make OneSignal work is currently not the most feasible way since there would be a lot more involved other than getting the plug in to work.

The only way I can get my project to work is by commenting the following lines in app/build.gradle.

plugins {
  id 'com.onesignal.androidsdk.onesignal-gradle-plugin' version '0.13.4'
}
apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'

I added the plugins { } section as specified on the doc: https://documentation.onesignal.com/docs/troubleshooting-android

I've tried installing most of the android build tools and sdks and no success (the ones targeted by the project).

I honestly ran out of options, no issues on iOS and before last thursday when I uploaded an update to the play store, everything was and is working fine there. Even going back a month in the branch, still doesn't work.

Android Studio V4.2.1 Gradle: 6.9 AGP: 4.2.1

Ionic Information

Ionic:

   Ionic CLI                     : 6.16.3 (/usr/local/lib/node_modules/@ionic/cli)
   Ionic Framework               : @ionic/angular 5.6.5
   @angular-devkit/build-angular : 0.803.29
   @angular-devkit/schematics    : 8.3.29
   @angular/cli                  : 8.3.29
   @ionic/angular-toolkit        : 2.3.3

Capacitor:

   Capacitor CLI      : 2.4.7
   @capacitor/android : 2.4.7
   @capacitor/core    : 2.4.7
   @capacitor/ios     : 2.4.7

Cordova:

   Cordova CLI       : not installed
   Cordova Platforms : not available
   Cordova Plugins   : not available

Utility:

   cordova-res : not installed globally
   native-run  : not installed globally

System:

   NodeJS : v12.18.2 (/usr/local/bin/node)
   npm    : 7.10.0
   OS     : macOS Big Sur
   Xcode  : Xcode 12.5 Build version 12E262

Project Setup

build.gradle

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

buildscript {

    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.2.1'
        classpath 'com.google.gms:google-services:4.3.8'

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

apply from: "variables.gradle"

allprojects {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

app/build.gradle

buildscript {
  repositories {
    google()
    mavenCentral()
    gradlePluginPortal()
    maven { url 'https://plugins.gradle.org/m2/'}
  }
  dependencies {
    classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.13.4'
  }
}
plugins {
  id 'com.onesignal.androidsdk.onesignal-gradle-plugin' version '0.13.4'
}
apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'
apply plugin: 'com.android.application'

repositories {
  maven { url 'https://maven.google.com' }
  flatDir{
    dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
  }
}

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    defaultConfig {
        applicationId "hidden"
        manifestPlaceholders = [
        onesignal_app_id: 'hidden',
        // Project number pulled from dashboard, local value is ignored.
        onesignal_google_project_number: 'hidden'
        ]
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1254
        versionName "1.0.17"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation 'com.onesignal:OneSignal:4.4.0'
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
    implementation project(':capacitor-android')
    testImplementation "junit:junit:$junitVersion"
    androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
    androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
    implementation project(':capacitor-cordova-android-plugins')
}

apply from: 'capacitor.build.gradle'

try {
    def servicesJSON = file('google-services.json')
    if (servicesJSON.text) {
        apply plugin: 'com.google.gms.google-services'
    }
} catch(Exception e) {
    logger.warn("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
}

Variables.gradle

ext {
    minSdkVersion = 23
    compileSdkVersion = 29
    targetSdkVersion = 29
    androidxAppCompatVersion = '1.1.0'
    androidxCoreVersion =  '1.2.0'
    androidxMaterialVersion =  '1.1.0-rc02'
    androidxBrowserVersion =  '1.2.0'
    androidxLocalbroadcastmanagerVersion =  '1.0.0'
    firebaseMessagingVersion =  '20.1.2'
    playServicesLocationVersion =  '17.0.0'
    junitVersion =  '4.12'
    androidxJunitVersion =  '1.1.1'
    androidxEspressoCoreVersion =  '3.2.0'
    cordovaAndroidVersion =  '7.0.0'
}

Full Error

Receiver class com.onesignal.androidsdk.GradleProjectPlugin does not define or inherit an implementation of the resolved method 'abstract java.lang.Object getProperty(java.lang.String)' of interface groovy.lang.GroovyObject.

Dependency Tree

Run ./gradlew app:dependencies

------------------------------------------------------------------------------------------------------------
If

plugins {
  id 'com.onesignal.androidsdk.onesignal-gradle-plugin' version '0.13.4'
}
apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'

is not commented I get this error
------------------------------------------------------------------------------------------------------------
FAILURE: Build failed with an exception.

* Where:
Script '/Users/User/Desktop//appName/node_modules/onesignal-cordova-plugin/build-extras-onesignal.gradle' line: 24

* What went wrong:
A problem occurred evaluating script.
> java.lang.AbstractMethodError (no error message)

------------------------------------------------------------------------------------------------------------
If 

//plugins {
//  id 'com.onesignal.androidsdk.onesignal-gradle-plugin' version '0.13.4'
//}
//apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'

 is commented I can retrieve this
------------------------------------------------------------------------------------------------------------

> Configure project :app
Error 'Plugin-Version' of 'unspecified' for 'com.android.build.gradle.AppPlugin@4b6b168d' is not a valid version number
OneSignal Warning: Could not get AGP plugin version

> Configure project :capacitor-cordova-android-plugins
Error 'Plugin-Version' of 'unspecified' for 'com.android.build.gradle.LibraryPlugin@3c50a2e7' is not a valid version number
WARNING:: Using flatDirs should be avoided because it doesn't support any meta-data formats.
Currently detected usages:
- repository flatDir used in: project ':app', project ':capacitor-cordova-android-plugins'
WARNING:: Please remove usages of `jcenter()` Maven repository from your build scripts and migrate your build to other Maven repositories.
This repository is deprecated and it will be shut down in the future.
See http://developer.android.com/r/tools/jcenter-end-of-service for more information.
Currently detected usages in: project ':capacitor-android', project ':capacitor-apple-login', project ':codetrix-studio-capacitor-google-auth'

> Task :app:dependencies

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

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)
+--- androidx.test.ext:junit:1.1.1 (n)
\--- androidx.test.espresso:espresso-core:3.2.0 (n)

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

androidTestReleaseAnnotationProcessor - Classpath for the annotation processor for 'androidTestRelease'. (n)
No dependencies

androidTestReleaseApi - API dependencies for 'androidTestRelease' sources. (n)
No dependencies

androidTestReleaseApk - Apk dependencies for 'androidTestRelease' sources (deprecated: use 'androidTestReleaseRuntimeOnly' instead). (n)
No dependencies

androidTestReleaseCompile - Compile dependencies for 'androidTestRelease' sources (deprecated: use 'androidTestReleaseImplementation' instead). (n)
No dependencies

androidTestReleaseCompileOnly - Compile only dependencies for 'androidTestRelease' sources. (n)
No dependencies

androidTestReleaseImplementation - Implementation only dependencies for 'androidTestRelease' sources. (n)
No dependencies

androidTestReleaseProvided - Provided dependencies for 'androidTestRelease' sources (deprecated: use 'androidTestReleaseCompileOnly' instead). (n)
No dependencies

androidTestReleaseRuntimeOnly - Runtime only dependencies for 'androidTestRelease' sources. (n)
No dependencies

androidTestReleaseWearApp - Link to a wear app to embed for object 'androidTestRelease'. (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. (n)
No dependencies

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

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

coreLibraryDesugaring - Configuration to desugar libraries
No dependencies

debugAabPublication - Bundle Publication for debug (n)
No dependencies

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

debugAndroidTestCompileClasspath - Resolved configuration for compilation for variant: debugAndroidTest
+--- androidx.test.ext:junit:1.1.1
|    +--- junit:junit:4.12
|    |    \--- org.hamcrest:hamcrest-core:1.3
|    +--- androidx.test:core:1.2.0
|    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    +--- androidx.test:monitor:1.2.0
|    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.1
|    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- androidx.test:monitor:1.2.0 (*)
|    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
+--- androidx.test.espresso:espresso-core:3.2.0
|    +--- androidx.test:runner:1.2.0
|    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    +--- androidx.test:monitor:1.2.0 (*)
|    |    +--- junit:junit:4.12 (*)
|    |    \--- net.sf.kxml:kxml2:2.3.0
|    +--- androidx.test.espresso:espresso-idling-resource:3.2.0
|    +--- com.squareup:javawriter:2.1.1
|    +--- javax.inject:javax.inject:1
|    +--- org.hamcrest:hamcrest-library:1.3
|    |    \--- org.hamcrest:hamcrest-core:1.3
|    +--- org.hamcrest:hamcrest-integration:1.3
|    |    \--- org.hamcrest:hamcrest-library:1.3 (*)
|    \--- com.google.code.findbugs:jsr305:2.0.1
+--- project :app (*)
+--- androidx.test.ext:junit:{strictly 1.1.1} -> 1.1.1 (c)
+--- androidx.test.espresso:espresso-core:{strictly 3.2.0} -> 3.2.0 (c)
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 22.0.0
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:3.0.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-backend-cct:3.0.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:3.0.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:3.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:3.0.0 (*)
|    |    |    |    \--- javax.inject:javax.inject:1
|    |    |    +--- com.google.firebase:firebase-encoders:17.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    \--- com.google.firebase:firebase-encoders-json:18.0.0
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- com.google.firebase:firebase-encoders:17.0.0 (*)
|    |    +--- com.google.android.datatransport:transport-runtime:3.0.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.6.0
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |         |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |         \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-cloud-messaging:16.0.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.6.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.2.1
|    |    |         \--- com.google.android.gms:play-services-basement:17.6.0 (*)
|    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.6.0 (*)
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.2.1 (*)
|    |    +--- com.google.firebase:firebase-common:20.0.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.6.0 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.2.1 (*)
|    |    |    \--- com.google.firebase:firebase-components:17.0.0
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- com.google.firebase:firebase-annotations:16.0.0
|    |    +--- com.google.firebase:firebase-components:17.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:18.0.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:3.0.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:3.0.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:3.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:20.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-components:17.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid-interop:17.1.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.6.0 (*)
|    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.2.1 (*)
|    |    +--- com.google.firebase:firebase-installations:17.0.0
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.2.1 (*)
|    |    |    +--- com.google.firebase:firebase-common:20.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:17.0.0
|    |    |         +--- com.google.android.gms:play-services-tasks:17.0.0 -> 17.2.1 (*)
|    |    |         \--- com.google.firebase:firebase-annotations:16.0.0
|    |    +--- com.google.firebase:firebase-installations-interop:17.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:19.0.0
|    |         +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.6.0 (*)
|    |         \--- com.google.firebase:firebase-annotations:16.0.0
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.3.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- com.google.guava:listenablefuture:1.0
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    \--- androidx.savedstate:savedstate:1.1.0 (*)
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    \--- androidx.startup:startup-runtime:1.0.0
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.6.0
|         +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|         +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|         +--- com.google.android.gms:play-services-basement:17.6.0 (*)
|         \--- com.google.android.gms:play-services-tasks:17.2.1 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
+--- project :capacitor-cordova-android-plugins
+--- project :codetrix-studio-capacitor-google-auth
+--- project :capacitor-apple-login
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    \--- com.squareup.okhttp3:okhttp:3.10.0
|         \--- com.squareup.okio:okio:1.14.0
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.0.0
|    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
|    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.transition:transition:1.0.0
|    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    +--- androidx.appcompat:appcompat:1.0.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.cardview:cardview:1.0.0 (*)
|    \--- androidx.recyclerview:recyclerview:1.0.0
|         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|         +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|         \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- androidx.annotation:annotation:{strictly 1.3.0-alpha01} -> 1.3.0-alpha01 (c)
+--- junit:junit:{strictly 4.12} -> 4.12 (c)
+--- androidx.test:core:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.test:monitor:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.test:runner:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.test.espresso:espresso-idling-resource:{strictly 3.2.0} -> 3.2.0 (c)
+--- com.squareup:javawriter:{strictly 2.1.1} -> 2.1.1 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
+--- org.hamcrest:hamcrest-library:{strictly 1.3} -> 1.3 (c)
+--- org.hamcrest:hamcrest-integration:{strictly 1.3} -> 1.3 (c)
+--- com.google.code.findbugs:jsr305:{strictly 2.0.1} -> 2.0.1 (c)
+--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
+--- androidx.lifecycle:lifecycle-common:{strictly 2.3.1} -> 2.3.1 (c)
\--- net.sf.kxml:kxml2:{strictly 2.3.0} -> 2.3.0 (c)

debugAndroidTestRuntimeClasspath - Resolved configuration for runtime for variant: debugAndroidTest
+--- androidx.test.ext:junit:1.1.1
|    +--- junit:junit:4.12
|    |    \--- org.hamcrest:hamcrest-core:1.3
|    +--- androidx.test:core:1.2.0
|    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    +--- androidx.test:monitor:1.2.0
|    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.1
|    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- androidx.test:monitor:1.2.0 (*)
|    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
+--- androidx.test.espresso:espresso-core:3.2.0
|    +--- androidx.test:runner:1.2.0
|    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    +--- androidx.test:monitor:1.2.0 (*)
|    |    +--- junit:junit:4.12 (*)
|    |    \--- net.sf.kxml:kxml2:2.3.0
|    +--- androidx.test.espresso:espresso-idling-resource:3.2.0
|    +--- com.squareup:javawriter:2.1.1
|    +--- javax.inject:javax.inject:1
|    +--- org.hamcrest:hamcrest-library:1.3
|    |    \--- org.hamcrest:hamcrest-core:1.3
|    +--- org.hamcrest:hamcrest-integration:1.3
|    |    \--- org.hamcrest:hamcrest-library:1.3 (*)
|    \--- com.google.code.findbugs:jsr305:2.0.1
+--- androidx.annotation:annotation:{strictly 1.3.0-alpha01} -> 1.3.0-alpha01 (c)
+--- javax.inject:javax.inject:{strictly 1} -> 1 (c)
\--- androidx.lifecycle:lifecycle-common:{strictly 2.3.1} -> 2.3.1 (c)

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

debugApkPublication - APK publication 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
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |         |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |         \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- com.google.guava:listenablefuture:1.0
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    \--- androidx.savedstate:savedstate:1.1.0 (*)
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    \--- androidx.startup:startup-runtime:1.0.0
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
+--- project :capacitor-cordova-android-plugins
+--- project :codetrix-studio-capacitor-google-auth
+--- project :capacitor-apple-login
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    \--- com.squareup.okhttp3:okhttp:3.10.0
|         \--- com.squareup.okio:okio:1.14.0
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02
|    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.cardview:cardview:1.0.0 (*)
|    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.transition:transition:1.2.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    \--- androidx.viewpager2:viewpager2:1.0.0
|         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|         \--- androidx.collection:collection:1.1.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- com.onesignal:OneSignal:{strictly 4.4.0} -> 4.4.0 (c)
+--- androidx.appcompat:appcompat:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.10.0} -> 3.10.0 (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.10.0} -> 3.10.0 (c)
+--- com.github.exxbrain:android-biometric:{strictly 0.4} -> 0.4 (c)
+--- com.google.android.material:material:{strictly 1.1.0-rc02} -> 1.1.0-rc02 (c)
+--- androidx.annotation:annotation:{strictly 1.3.0-alpha01} -> 1.3.0-alpha01 (c)
+--- com.google.firebase:firebase-messaging:{strictly 20.1.2} -> 20.1.2 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.browser:browser:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.work:work-runtime:{strictly 2.7.0-alpha04} -> 2.7.0-alpha04 (c)
+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.72} -> 1.3.72 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.1.0} -> 17.1.0 (c)
+--- androidx.core:core:{strictly 1.6.0-beta02} -> 1.6.0-beta02 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.activity:activity:{strictly 1.2.3} -> 1.2.3 (c)
+--- androidx.fragment:fragment:{strictly 1.3.4} -> 1.3.4 (c)
+--- androidx.appcompat:appcompat-resources:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.savedstate:savedstate:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.squareup.okio:okio:{strictly 1.14.0} -> 1.14.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
+--- com.google.android.datatransport:transport-api:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-backend-cct:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-runtime:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.1.1} -> 17.1.1 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-datatransport:{strictly 17.0.3} -> 17.0.3 (c)
+--- com.google.firebase:firebase-encoders-json:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-iid:{strictly 20.1.1} -> 20.1.1 (c)
+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
+--- com.google.guava:listenablefuture:{strictly 1.0} -> 1.0 (c)
+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.1.0} -> 2.1.0 (c)
+--- androidx.startup:startup-runtime:{strictly 1.0.0} -> 1.0.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.72} -> 1.3.72 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.1} -> 1.1.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.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.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.lifecycle:lifecycle-common:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
+--- com.google.dagger:dagger:{strictly 2.24} -> 2.24 (c)
+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-installations:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
\--- javax.inject:javax.inject:{strictly 1} -> 1 (c)

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

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

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

debugReverseMetadataValues - Metadata Values dependencies for the base Split
No dependencies

debugRuntimeClasspath - Resolved configuration for runtime for variant: debug
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    |    \--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |         |    \--- androidx.tracing:tracing:1.0.0
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.concurrent:concurrent-futures:1.0.0
|    |    |    +--- com.google.guava:listenablefuture:1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    +--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.startup:startup-runtime:1.0.0
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.tracing:tracing:1.0.0 (*)
|    |    +--- androidx.emoji2:emoji2-views-helper:1.0.0-alpha02
|    |    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02 (*)
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    \--- androidx.resourceinspection:resourceinspection-annotation:1.0.0-alpha02
|    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    +--- androidx.startup:startup-runtime:1.0.0 (*)
|    |    +--- androidx.core:core:1.5.0-beta01 -> 1.6.0-beta02 (*)
|    |    +--- androidx.room:room-runtime:2.2.5
|    |    |    +--- androidx.room:room-common:2.2.5
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite-framework:2.0.1 -> 2.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.sqlite:sqlite:2.1.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite:2.0.1 -> 2.1.0 (*)
|    |    |    \--- androidx.arch.core:core-runtime:2.0.1 -> 2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite:2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite-framework:2.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    \--- androidx.lifecycle:lifecycle-service:2.1.0
|    |         \--- androidx.lifecycle:lifecycle-runtime:2.1.0 -> 2.3.1 (*)
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    +--- com.google.android.material:material:1.1.0-rc02
|    |    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    |    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    |    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.transition:transition:1.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    \--- androidx.viewpager2:viewpager2:1.0.0
|    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|    |         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|    |         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |         \--- androidx.collection:collection:1.1.0 (*)
|    +--- androidx.browser:browser:1.2.0 (*)
|    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0 (*)
|    +--- androidx.exifinterface:exifinterface:1.2.0
|    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- com.google.firebase:firebase-messaging:20.1.2 (*)
|    +--- com.google.android.gms:play-services-location:17.0.0
|    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.android.gms:play-services-places-placereport:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    \--- org.apache.cordova:framework:7.0.0
+--- project :capacitor-cordova-android-plugins
|    +--- org.apache.cordova:framework:7.0.0
|    +--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    |    \--- com.squareup.okhttp3:okhttp:3.10.0
|    |         \--- com.squareup.okio:okio:1.14.0
|    +--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
|    +--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
|    +--- com.onesignal:OneSignal:4.4.0 (*)
|    +--- com.squareup.okhttp3:okhttp:3.10.0 (*)
|    +--- com.github.exxbrain:android-biometric:0.4
|    |    \--- androidx.appcompat:appcompat:1.0.0 -> 1.4.0-alpha02 (*)
|    +--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- project :codetrix-studio-capacitor-google-auth
|    +--- project :capacitor-android (*)
|    \--- com.google.android.gms:play-services-auth:18.+ -> 18.1.0
|         +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|         +--- androidx.loader:loader:1.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-api-phone:17.0.0
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-base:17.0.0
|         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-base:17.1.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.1.1 (*)
|         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
+--- project :capacitor-apple-login
|    \--- project :capacitor-android (*)
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0 (*)
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4 (*)
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
\--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01

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
+--- project :app (*)
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |         |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |         \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- com.google.guava:listenablefuture:1.0
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    \--- androidx.savedstate:savedstate:1.1.0 (*)
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    \--- androidx.startup:startup-runtime:1.0.0
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
+--- project :capacitor-cordova-android-plugins
+--- project :codetrix-studio-capacitor-google-auth
+--- project :capacitor-apple-login
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    \--- com.squareup.okhttp3:okhttp:3.10.0
|         \--- com.squareup.okio:okio:1.14.0
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02
|    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.cardview:cardview:1.0.0 (*)
|    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.transition:transition:1.2.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    \--- androidx.viewpager2:viewpager2:1.0.0
|         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|         \--- androidx.collection:collection:1.1.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- junit:junit:4.12
|    \--- org.hamcrest:hamcrest-core:1.3
+--- com.onesignal:OneSignal:{strictly 4.4.0} -> 4.4.0 (c)
+--- androidx.appcompat:appcompat:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.10.0} -> 3.10.0 (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.10.0} -> 3.10.0 (c)
+--- com.github.exxbrain:android-biometric:{strictly 0.4} -> 0.4 (c)
+--- com.google.android.material:material:{strictly 1.1.0-rc02} -> 1.1.0-rc02 (c)
+--- androidx.annotation:annotation:{strictly 1.3.0-alpha01} -> 1.3.0-alpha01 (c)
+--- junit:junit:{strictly 4.12} -> 4.12 (c)
+--- com.google.firebase:firebase-messaging:{strictly 20.1.2} -> 20.1.2 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.browser:browser:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.work:work-runtime:{strictly 2.7.0-alpha04} -> 2.7.0-alpha04 (c)
+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.72} -> 1.3.72 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.1.0} -> 17.1.0 (c)
+--- androidx.core:core:{strictly 1.6.0-beta02} -> 1.6.0-beta02 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.activity:activity:{strictly 1.2.3} -> 1.2.3 (c)
+--- androidx.fragment:fragment:{strictly 1.3.4} -> 1.3.4 (c)
+--- androidx.appcompat:appcompat-resources:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.savedstate:savedstate:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.squareup.okio:okio:{strictly 1.14.0} -> 1.14.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
+--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
+--- com.google.android.datatransport:transport-api:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-backend-cct:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-runtime:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.1.1} -> 17.1.1 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-datatransport:{strictly 17.0.3} -> 17.0.3 (c)
+--- com.google.firebase:firebase-encoders-json:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-iid:{strictly 20.1.1} -> 20.1.1 (c)
+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
+--- com.google.guava:listenablefuture:{strictly 1.0} -> 1.0 (c)
+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.1.0} -> 2.1.0 (c)
+--- androidx.startup:startup-runtime:{strictly 1.0.0} -> 1.0.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.72} -> 1.3.72 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.1} -> 1.1.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.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.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.lifecycle:lifecycle-common:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
+--- com.google.dagger:dagger:{strictly 2.24} -> 2.24 (c)
+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-installations:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
\--- javax.inject:javax.inject:{strictly 1} -> 1 (c)

debugUnitTestRuntimeClasspath - Resolved configuration for runtime for variant: debugUnitTest
+--- project :app (*)
+--- junit:junit:4.12
|    \--- org.hamcrest:hamcrest-core:1.3
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    |    \--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |         |    \--- androidx.tracing:tracing:1.0.0
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.concurrent:concurrent-futures:1.0.0
|    |    |    +--- com.google.guava:listenablefuture:1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    +--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.startup:startup-runtime:1.0.0
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.tracing:tracing:1.0.0 (*)
|    |    +--- androidx.emoji2:emoji2-views-helper:1.0.0-alpha02
|    |    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02 (*)
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    \--- androidx.resourceinspection:resourceinspection-annotation:1.0.0-alpha02
|    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    +--- androidx.startup:startup-runtime:1.0.0 (*)
|    |    +--- androidx.core:core:1.5.0-beta01 -> 1.6.0-beta02 (*)
|    |    +--- androidx.room:room-runtime:2.2.5
|    |    |    +--- androidx.room:room-common:2.2.5
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite-framework:2.0.1 -> 2.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.sqlite:sqlite:2.1.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite:2.0.1 -> 2.1.0 (*)
|    |    |    \--- androidx.arch.core:core-runtime:2.0.1 -> 2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite:2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite-framework:2.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    \--- androidx.lifecycle:lifecycle-service:2.1.0
|    |         \--- androidx.lifecycle:lifecycle-runtime:2.1.0 -> 2.3.1 (*)
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    +--- com.google.android.material:material:1.1.0-rc02
|    |    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    |    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    |    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.transition:transition:1.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    \--- androidx.viewpager2:viewpager2:1.0.0
|    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|    |         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|    |         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |         \--- androidx.collection:collection:1.1.0 (*)
|    +--- androidx.browser:browser:1.2.0 (*)
|    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0 (*)
|    +--- androidx.exifinterface:exifinterface:1.2.0
|    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- com.google.firebase:firebase-messaging:20.1.2 (*)
|    +--- com.google.android.gms:play-services-location:17.0.0
|    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.android.gms:play-services-places-placereport:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    \--- org.apache.cordova:framework:7.0.0
+--- project :capacitor-cordova-android-plugins
|    +--- org.apache.cordova:framework:7.0.0
|    +--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    |    \--- com.squareup.okhttp3:okhttp:3.10.0
|    |         \--- com.squareup.okio:okio:1.14.0
|    +--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
|    +--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
|    +--- com.onesignal:OneSignal:4.4.0 (*)
|    +--- com.squareup.okhttp3:okhttp:3.10.0 (*)
|    +--- com.github.exxbrain:android-biometric:0.4
|    |    \--- androidx.appcompat:appcompat:1.0.0 -> 1.4.0-alpha02 (*)
|    +--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- project :codetrix-studio-capacitor-google-auth
|    +--- project :capacitor-android (*)
|    \--- com.google.android.gms:play-services-auth:18.+ -> 18.1.0
|         +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|         +--- androidx.loader:loader:1.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-api-phone:17.0.0
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-base:17.0.0
|         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-base:17.1.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.1.1 (*)
|         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
+--- project :capacitor-apple-login
|    \--- project :capacitor-android (*)
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0 (*)
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4 (*)
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
\--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01

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. (n)
No dependencies

implementation - Implementation only dependencies for 'main' sources. (n)
+--- com.onesignal:OneSignal:4.4.0 (n)
+--- unspecified (n)
+--- androidx.appcompat:appcompat:1.1.0 (n)
+--- project capacitor-android (n)
+--- project capacitor-cordova-android-plugins (n)
+--- project codetrix-studio-capacitor-google-auth (n)
+--- project capacitor-apple-login (n)
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0 (n)
+--- androidx.legacy:legacy-support-v4:1.+ (n)
+--- androidx.appcompat:appcompat:1.+ (n)
+--- com.onesignal:OneSignal:3.15.7 (n)
+--- com.squareup.okhttp3:okhttp:3.10.0 (n)
+--- com.github.exxbrain:android-biometric:0.4 (n)
+--- com.android.support:design:28.0.0 (n)
+--- com.android.support:appcompat-v7:28.0.0 (n)
+--- com.android.support:support-v4:28.0.0 (n)
\--- com.android.support:support-annotations:28.0.0 (n)

lintChecks - Configuration to apply external lint check jar
No dependencies

lintClassPath - The lint embedded classpath
\--- com.android.tools.lint:lint-gradle:27.2.1
     +--- com.android.tools:sdk-common:27.2.1
     |    +--- com.android.tools:sdklib:27.2.1
     |    |    +--- com.android.tools.layoutlib:layoutlib-api:27.2.1
     |    |    |    +--- com.android.tools:common:27.2.1
     |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31
     |    |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib:1.4.31
     |    |    |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.4.31
     |    |    |    |    |    |    \--- org.jetbrains:annotations:13.0
     |    |    |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.31
     |    |    |    |    |         \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.31 (*)
     |    |    |    |    +--- com.android.tools:annotations:27.2.1
     |    |    |    |    \--- com.google.guava:guava:28.1-jre
     |    |    |    |         +--- com.google.guava:failureaccess:1.0.1
     |    |    |    |         +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
     |    |    |    |         +--- com.google.code.findbugs:jsr305:3.0.2
     |    |    |    |         +--- org.checkerframework:checker-qual:2.8.1
     |    |    |    |         +--- com.google.errorprone:error_prone_annotations:2.3.2
     |    |    |    |         +--- com.google.j2objc:j2objc-annotations:1.3
     |    |    |    |         \--- org.codehaus.mojo:animal-sniffer-annotations:1.18
     |    |    |    +--- net.sf.kxml:kxml2:2.3.0
     |    |    |    +--- com.android.tools:annotations:27.2.1
     |    |    |    \--- org.jetbrains:annotations:13.0
     |    |    +--- com.android.tools:dvlib:27.2.1
     |    |    |    \--- com.android.tools:common:27.2.1 (*)
     |    |    +--- com.android.tools:repository:27.2.1
     |    |    |    +--- com.android.tools:common:27.2.1 (*)
     |    |    |    +--- com.sun.activation:javax.activation:1.2.0
     |    |    |    +--- org.apache.commons:commons-compress:1.12
     |    |    |    +--- org.glassfish.jaxb:jaxb-runtime:2.3.2
     |    |    |    |    +--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2
     |    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1
     |    |    |    |    +--- org.glassfish.jaxb:txw2:2.3.2
     |    |    |    |    +--- com.sun.istack:istack-commons-runtime:3.0.8
     |    |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1
     |    |    |    |    +--- org.jvnet.staxex:stax-ex:1.8.1
     |    |    |    |    |    +--- jakarta.activation:jakarta.activation-api:1.2.1
     |    |    |    |    |    \--- jakarta.xml.bind:jakarta.xml.bind-api:2.3.2 (*)
     |    |    |    |    +--- com.sun.xml.fastinfoset:FastInfoset:1.2.16
     |    |    |    |    \--- jakarta.activation:jakarta.activation-api:1.2.1
     |    |    |    +--- com.google.jimfs:jimfs:1.1
     |    |    |    |    \--- com.google.guava:guava:18.0 -> 28.1-jre (*)
     |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    |    +--- com.google.code.gson:gson:2.8.6
     |    |    +--- 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:4.2.1
     |    |    \--- com.android.tools.ddms:ddmlib:27.2.1
     |    |         +--- com.android.tools:common:27.2.1 (*)
     |    |         +--- net.sf.kxml:kxml2:2.3.0
     |    |         \--- com.google.protobuf:protobuf-java:3.10.0
     |    +--- com.android.tools.build:builder-model:4.2.1
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    |    \--- com.android.tools:annotations:27.2.1
     |    +--- com.android.tools.ddms:ddmlib:27.2.1 (*)
     |    +--- com.android.tools.analytics-library:shared:27.2.1
     |    |    +--- com.android.tools.analytics-library:protos:27.2.1
     |    |    |    \--- com.google.protobuf:protobuf-java:3.10.0
     |    |    +--- com.android.tools:annotations:27.2.1
     |    |    +--- com.android.tools:common:27.2.1 (*)
     |    |    +--- com.google.guava:guava:28.1-jre (*)
     |    |    +--- com.google.code.gson:gson:2.8.6
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    |    \--- net.java.dev.jna:jna-platform:5.6.0
     |    |         \--- net.java.dev.jna:jna:5.6.0
     |    +--- 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.4.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.4.31
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.4.31 (*)
     |    +--- com.google.protobuf:protobuf-java:3.10.0
     |    +--- javax.inject:javax.inject:1
     |    +--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
     |    +--- com.android.tools.build:aapt2-proto:4.1.0-alpha01-6193524
     |    |    \--- com.google.protobuf:protobuf-java:3.10.0
     |    \--- xerces:xercesImpl:2.12.0
     |         \--- xml-apis:xml-apis:1.4.01
     +--- com.android.tools.build:builder:4.2.1
     |    +--- com.android.tools.build:builder-model:4.2.1 (*)
     |    +--- com.android.tools.build:builder-test-api:4.2.1 (*)
     |    +--- com.android.tools:sdklib:27.2.1 (*)
     |    +--- com.android.tools:sdk-common:27.2.1 (*)
     |    +--- com.android.tools:common:27.2.1 (*)
     |    +--- com.android.tools.build:manifest-merger:27.2.1
     |    |    +--- com.android.tools:common:27.2.1 (*)
     |    |    +--- com.android.tools:sdklib:27.2.1 (*)
     |    |    +--- com.android.tools:sdk-common:27.2.1 (*)
     |    |    +--- com.google.code.gson:gson:2.8.6
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    |    \--- net.sf.kxml:kxml2:2.3.0
     |    +--- com.android.tools.ddms:ddmlib:27.2.1 (*)
     |    +--- com.android:zipflinger:4.2.1
     |    |    \--- com.android.tools:annotations:27.2.1
     |    +--- com.android:signflinger:4.2.1
     |    |    +--- com.android.tools.build:apksig:4.2.1
     |    |    \--- com.android:zipflinger:4.2.1 (*)
     |    +--- com.android.tools.analytics-library:protos:27.2.1 (*)
     |    +--- com.android.tools.analytics-library:tracker:27.2.1
     |    |    +--- com.android.tools:annotations:27.2.1
     |    |    +--- com.android.tools:common:27.2.1 (*)
     |    |    +--- com.android.tools.analytics-library:protos:27.2.1 (*)
     |    |    +--- com.android.tools.analytics-library:shared:27.2.1 (*)
     |    |    +--- com.google.protobuf:protobuf-java:3.10.0
     |    |    +--- com.google.guava:guava:28.1-jre (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    +--- com.android.tools.build:apksig:4.2.1
     |    +--- com.android.tools.build:apkzlib:4.2.1
     |    |    +--- com.google.code.findbugs:jsr305:1.3.9 -> 3.0.2
     |    |    +--- com.google.guava:guava:23.0 -> 28.1-jre (*)
     |    |    +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
     |    |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    |    \--- com.android.tools.build:apksig:4.2.1
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    +--- com.squareup:javawriter:2.5.0
     |    +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
     |    +--- org.bouncycastle:bcprov-jdk15on:1.56
     |    +--- org.ow2.asm:asm:7.0
     |    +--- org.ow2.asm:asm-tree:7.0
     |    |    \--- org.ow2.asm:asm:7.0
     |    +--- javax.inject:javax.inject:1
     |    +--- org.ow2.asm:asm-commons:7.0
     |    |    +--- org.ow2.asm:asm:7.0
     |    |    +--- org.ow2.asm:asm-tree:7.0 (*)
     |    |    \--- org.ow2.asm:asm-analysis:7.0
     |    |         \--- org.ow2.asm:asm-tree:7.0 (*)
     |    +--- org.ow2.asm:asm-util:7.0
     |    |    +--- org.ow2.asm:asm:7.0
     |    |    +--- org.ow2.asm:asm-tree:7.0 (*)
     |    |    \--- org.ow2.asm:asm-analysis:7.0 (*)
     |    +--- it.unimi.dsi:fastutil:8.4.0
     |    +--- net.sf.jopt-simple:jopt-simple:4.9
     |    \--- com.googlecode.json-simple:json-simple:1.1
     +--- com.android.tools.build:builder-model:4.2.1 (*)
     +--- com.android.tools.external.com-intellij:intellij-core:27.2.1
     |    \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
     +--- com.android.tools.external.com-intellij:kotlin-compiler:27.2.1
     +--- com.android.tools.external.org-jetbrains:uast:27.2.1
     +--- com.android.tools.build:manifest-merger:27.2.1 (*)
     +--- com.android.tools.lint:lint:27.2.1
     |    +--- com.android.tools.lint:lint-checks:27.2.1
     |    |    +--- com.android.tools.lint:lint-api:27.2.1
     |    |    |    +--- com.android.tools.build:builder-model:4.2.1 (*)
     |    |    |    +--- com.android.tools:sdk-common:27.2.1 (*)
     |    |    |    +--- com.android.tools.lint:lint-model:27.2.1
     |    |    |    |    +--- com.android.tools:common:27.2.1 (*)
     |    |    |    |    +--- com.android.tools:sdk-common:27.2.1 (*)
     |    |    |    |    +--- com.android.tools.build:builder-model:4.2.1 (*)
     |    |    |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    |    |    |    \--- net.sf.kxml:kxml2:2.3.0
     |    |    |    +--- com.google.guava:guava:28.1-jre (*)
     |    |    |    +--- com.android.tools.external.com-intellij:intellij-core:27.2.1 (*)
     |    |    |    +--- com.android.tools.external.com-intellij:kotlin-compiler:27.2.1
     |    |    |    +--- com.android.tools.external.org-jetbrains:uast:27.2.1
     |    |    |    +--- com.android.tools.build:manifest-merger:27.2.1 (*)
     |    |    |    +--- org.ow2.asm:asm:7.0
     |    |    |    +--- org.ow2.asm:asm-tree:7.0 (*)
     |    |    |    +--- org.jetbrains.kotlin:kotlin-reflect:1.4.31 (*)
     |    |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    |    +--- com.google.guava:guava:28.1-jre (*)
     |    |    +--- com.android.tools.external.com-intellij:intellij-core:27.2.1 (*)
     |    |    +--- com.android.tools.external.com-intellij:kotlin-compiler:27.2.1
     |    |    +--- com.android.tools.external.org-jetbrains:uast:27.2.1
     |    |    +--- org.ow2.asm:asm-analysis:7.0 (*)
     |    |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    +--- com.google.guava:guava:28.1-jre (*)
     |    +--- com.android.tools.external.org-jetbrains:uast:27.2.1
     |    +--- com.android.tools.external.com-intellij:kotlin-compiler:27.2.1
     |    +--- com.android.tools.build:manifest-merger:27.2.1 (*)
     |    +--- com.android.tools.analytics-library:shared:27.2.1 (*)
     |    +--- com.android.tools.analytics-library:protos:27.2.1 (*)
     |    +--- com.android.tools.analytics-library:tracker:27.2.1 (*)
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.4.31 (*)
     |    \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     +--- com.android.tools.lint:lint-gradle-api:27.2.1
     |    +--- com.android.tools:sdklib:27.2.1 (*)
     |    +--- com.android.tools.lint:lint-model:27.2.1 (*)
     |    +--- com.android.tools.build:gradle-api:4.2.1
     |    |    +--- com.android.tools.build:builder-test-api:4.2.1 (*)
     |    |    +--- com.google.guava:guava:28.1-jre (*)
     |    |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    |    \--- org.ow2.asm:asm:7.0
     |    +--- org.jetbrains.kotlin:kotlin-reflect:1.4.31 (*)
     |    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)
     |    \--- com.google.guava:guava:28.1-jre (*)
     +--- com.android:zipflinger:4.2.1 (*)
     +--- org.codehaus.groovy:groovy-all:2.4.15
     +--- org.jetbrains.kotlin:kotlin-reflect:1.4.31 (*)
     \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 (*)

lintPublish - Configuration to publish external lint check jar
No dependencies

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

releaseAabPublication - Bundle Publication for release (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

releaseApkPublication - APK publication 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
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |         |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |         \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- com.google.guava:listenablefuture:1.0
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    \--- androidx.savedstate:savedstate:1.1.0 (*)
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    \--- androidx.startup:startup-runtime:1.0.0
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
+--- project :capacitor-cordova-android-plugins
+--- project :codetrix-studio-capacitor-google-auth
+--- project :capacitor-apple-login
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    \--- com.squareup.okhttp3:okhttp:3.10.0
|         \--- com.squareup.okio:okio:1.14.0
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02
|    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.cardview:cardview:1.0.0 (*)
|    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.transition:transition:1.2.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    \--- androidx.viewpager2:viewpager2:1.0.0
|         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|         \--- androidx.collection:collection:1.1.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- com.onesignal:OneSignal:{strictly 4.4.0} -> 4.4.0 (c)
+--- androidx.annotation:annotation:{strictly 1.3.0-alpha01} -> 1.3.0-alpha01 (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.appcompat:appcompat:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- com.google.android.material:material:{strictly 1.1.0-rc02} -> 1.1.0-rc02 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.10.0} -> 3.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.10.0} -> 3.10.0 (c)
+--- com.github.exxbrain:android-biometric:{strictly 0.4} -> 0.4 (c)
+--- com.google.firebase:firebase-messaging:{strictly 20.1.2} -> 20.1.2 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.browser:browser:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.work:work-runtime:{strictly 2.7.0-alpha04} -> 2.7.0-alpha04 (c)
+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.72} -> 1.3.72 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.1.0} -> 17.1.0 (c)
+--- androidx.core:core:{strictly 1.6.0-beta02} -> 1.6.0-beta02 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.activity:activity:{strictly 1.2.3} -> 1.2.3 (c)
+--- androidx.fragment:fragment:{strictly 1.3.4} -> 1.3.4 (c)
+--- androidx.appcompat:appcompat-resources:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.savedstate:savedstate:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.squareup.okio:okio:{strictly 1.14.0} -> 1.14.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
+--- com.google.android.datatransport:transport-api:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-backend-cct:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-runtime:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.1.1} -> 17.1.1 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-datatransport:{strictly 17.0.3} -> 17.0.3 (c)
+--- com.google.firebase:firebase-encoders-json:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-iid:{strictly 20.1.1} -> 20.1.1 (c)
+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
+--- com.google.guava:listenablefuture:{strictly 1.0} -> 1.0 (c)
+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.1.0} -> 2.1.0 (c)
+--- androidx.startup:startup-runtime:{strictly 1.0.0} -> 1.0.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.72} -> 1.3.72 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.1} -> 1.1.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.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.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.lifecycle:lifecycle-common:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
+--- com.google.dagger:dagger:{strictly 2.24} -> 2.24 (c)
+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-installations:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
\--- javax.inject:javax.inject:{strictly 1} -> 1 (c)

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

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

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

releaseReverseMetadataValues - Metadata Values dependencies for the base Split
No dependencies

releaseRuntimeClasspath - Resolved configuration for runtime for variant: release
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    |    \--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |         |    \--- androidx.tracing:tracing:1.0.0
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.concurrent:concurrent-futures:1.0.0
|    |    |    +--- com.google.guava:listenablefuture:1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    +--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.startup:startup-runtime:1.0.0
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.tracing:tracing:1.0.0 (*)
|    |    +--- androidx.emoji2:emoji2-views-helper:1.0.0-alpha02
|    |    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02 (*)
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    \--- androidx.resourceinspection:resourceinspection-annotation:1.0.0-alpha02
|    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    +--- androidx.startup:startup-runtime:1.0.0 (*)
|    |    +--- androidx.core:core:1.5.0-beta01 -> 1.6.0-beta02 (*)
|    |    +--- androidx.room:room-runtime:2.2.5
|    |    |    +--- androidx.room:room-common:2.2.5
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite-framework:2.0.1 -> 2.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.sqlite:sqlite:2.1.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite:2.0.1 -> 2.1.0 (*)
|    |    |    \--- androidx.arch.core:core-runtime:2.0.1 -> 2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite:2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite-framework:2.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    \--- androidx.lifecycle:lifecycle-service:2.1.0
|    |         \--- androidx.lifecycle:lifecycle-runtime:2.1.0 -> 2.3.1 (*)
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    +--- com.google.android.material:material:1.1.0-rc02
|    |    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    |    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    |    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.transition:transition:1.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    \--- androidx.viewpager2:viewpager2:1.0.0
|    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|    |         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|    |         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |         \--- androidx.collection:collection:1.1.0 (*)
|    +--- androidx.browser:browser:1.2.0 (*)
|    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0 (*)
|    +--- androidx.exifinterface:exifinterface:1.2.0
|    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- com.google.firebase:firebase-messaging:20.1.2 (*)
|    +--- com.google.android.gms:play-services-location:17.0.0
|    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.android.gms:play-services-places-placereport:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    \--- org.apache.cordova:framework:7.0.0
+--- project :capacitor-cordova-android-plugins
|    +--- org.apache.cordova:framework:7.0.0
|    +--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    |    \--- com.squareup.okhttp3:okhttp:3.10.0
|    |         \--- com.squareup.okio:okio:1.14.0
|    +--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
|    +--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
|    +--- com.onesignal:OneSignal:4.4.0 (*)
|    +--- com.squareup.okhttp3:okhttp:3.10.0 (*)
|    +--- com.github.exxbrain:android-biometric:0.4
|    |    \--- androidx.appcompat:appcompat:1.0.0 -> 1.4.0-alpha02 (*)
|    +--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- project :codetrix-studio-capacitor-google-auth
|    +--- project :capacitor-android (*)
|    \--- com.google.android.gms:play-services-auth:18.+ -> 18.1.0
|         +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|         +--- androidx.loader:loader:1.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-api-phone:17.0.0
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-base:17.0.0
|         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-base:17.1.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.1.1 (*)
|         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
+--- project :capacitor-apple-login
|    \--- project :capacitor-android (*)
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0 (*)
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4 (*)
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
\--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01

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
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |         |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |         \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- com.google.guava:listenablefuture:1.0
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    \--- androidx.savedstate:savedstate:1.1.0 (*)
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    \--- androidx.startup:startup-runtime:1.0.0
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
+--- project :capacitor-cordova-android-plugins
+--- project :codetrix-studio-capacitor-google-auth
+--- project :capacitor-apple-login
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    \--- com.squareup.okhttp3:okhttp:3.10.0
|         \--- com.squareup.okio:okio:1.14.0
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02
|    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.cardview:cardview:1.0.0 (*)
|    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.transition:transition:1.2.0
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    \--- androidx.viewpager2:viewpager2:1.0.0
|         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|         \--- androidx.collection:collection:1.1.0 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
+--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- project :app (*)
+--- com.onesignal:OneSignal:{strictly 4.4.0} -> 4.4.0 (c)
+--- androidx.annotation:annotation:{strictly 1.3.0-alpha01} -> 1.3.0-alpha01 (c)
+--- androidx.legacy:legacy-support-v4:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.appcompat:appcompat:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- com.google.android.material:material:{strictly 1.1.0-rc02} -> 1.1.0-rc02 (c)
+--- com.squareup.okhttp3:okhttp-urlconnection:{strictly 3.10.0} -> 3.10.0 (c)
+--- com.squareup.okhttp3:okhttp:{strictly 3.10.0} -> 3.10.0 (c)
+--- com.github.exxbrain:android-biometric:{strictly 0.4} -> 0.4 (c)
+--- junit:junit:4.12
|    \--- org.hamcrest:hamcrest-core:1.3
+--- junit:junit:{strictly 4.12} -> 4.12 (c)
+--- com.google.firebase:firebase-messaging:{strictly 20.1.2} -> 20.1.2 (c)
+--- androidx.cardview:cardview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.browser:browser:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.work:work-runtime:{strictly 2.7.0-alpha04} -> 2.7.0-alpha04 (c)
+--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.72} -> 1.3.72 (c)
+--- com.google.android.gms:play-services-base:{strictly 17.1.0} -> 17.1.0 (c)
+--- androidx.core:core:{strictly 1.6.0-beta02} -> 1.6.0-beta02 (c)
+--- androidx.cursoradapter:cursoradapter:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.activity:activity:{strictly 1.2.3} -> 1.2.3 (c)
+--- androidx.fragment:fragment:{strictly 1.3.4} -> 1.3.4 (c)
+--- androidx.appcompat:appcompat-resources:{strictly 1.4.0-alpha02} -> 1.4.0-alpha02 (c)
+--- androidx.drawerlayout:drawerlayout:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.savedstate:savedstate:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.media:media:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-utils:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.legacy:legacy-support-core-ui:{strictly 1.0.0} -> 1.0.0 (c)
+--- com.squareup.okio:okio:{strictly 1.14.0} -> 1.14.0 (c)
+--- androidx.coordinatorlayout:coordinatorlayout:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.lifecycle:lifecycle-runtime:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.recyclerview:recyclerview:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.transition:transition:{strictly 1.2.0} -> 1.2.0 (c)
+--- androidx.vectordrawable:vectordrawable:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.viewpager2:viewpager2:{strictly 1.0.0} -> 1.0.0 (c)
+--- org.hamcrest:hamcrest-core:{strictly 1.3} -> 1.3 (c)
+--- androidx.collection:collection:{strictly 1.1.0} -> 1.1.0 (c)
+--- com.google.android.datatransport:transport-api:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-backend-cct:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.datatransport:transport-runtime:{strictly 2.2.0} -> 2.2.0 (c)
+--- com.google.android.gms:play-services-basement:{strictly 17.1.1} -> 17.1.1 (c)
+--- com.google.android.gms:play-services-tasks:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-common:{strictly 19.3.0} -> 19.3.0 (c)
+--- com.google.firebase:firebase-components:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-datatransport:{strictly 17.0.3} -> 17.0.3 (c)
+--- com.google.firebase:firebase-encoders-json:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-iid:{strictly 20.1.1} -> 20.1.1 (c)
+--- com.google.firebase:firebase-measurement-connector:{strictly 18.0.0} -> 18.0.0 (c)
+--- com.google.guava:listenablefuture:{strictly 1.0} -> 1.0 (c)
+--- androidx.annotation:annotation-experimental:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata:{strictly 2.1.0} -> 2.1.0 (c)
+--- androidx.startup:startup-runtime:{strictly 1.0.0} -> 1.0.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.72} -> 1.3.72 (c)
+--- androidx.versionedparcelable:versionedparcelable:{strictly 1.1.1} -> 1.1.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.lifecycle:lifecycle-viewmodel-savedstate:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.viewpager:viewpager:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.loader:loader:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.lifecycle:lifecycle-livedata-core:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.vectordrawable:vectordrawable-animated:{strictly 1.1.0} -> 1.1.0 (c)
+--- androidx.customview:customview:{strictly 1.0.0} -> 1.0.0 (c)
+--- androidx.documentfile:documentfile:{strictly 1.0.0} -> 1.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.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.lifecycle:lifecycle-common:{strictly 2.3.1} -> 2.3.1 (c)
+--- androidx.arch.core:core-common:{strictly 2.1.0} -> 2.1.0 (c)
+--- com.google.dagger:dagger:{strictly 2.24} -> 2.24 (c)
+--- com.google.auto.value:auto-value-annotations:{strictly 1.6.5} -> 1.6.5 (c)
+--- com.google.android.gms:play-services-stats:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-iid-interop:{strictly 17.0.0} -> 17.0.0 (c)
+--- com.google.firebase:firebase-installations:{strictly 16.0.0} -> 16.0.0 (c)
+--- com.google.firebase:firebase-installations-interop:{strictly 16.0.0} -> 16.0.0 (c)
+--- androidx.arch.core:core-runtime:{strictly 2.1.0} -> 2.1.0 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
\--- javax.inject:javax.inject:{strictly 1} -> 1 (c)

releaseUnitTestRuntimeClasspath - Resolved configuration for runtime for variant: releaseUnitTest
+--- project :app (*)
+--- junit:junit:4.12
|    \--- org.hamcrest:hamcrest-core:1.3
+--- com.onesignal:OneSignal:4.4.0
|    +--- com.google.firebase:firebase-messaging:[19.0.0, 22.99.99] -> 20.1.2
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1
|    |    |    |    +--- androidx.arch.core:core-runtime:2.1.0
|    |    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    |    \--- androidx.arch.core:core-common:2.1.0
|    |    |    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.lifecycle:lifecycle-common:2.3.1
|    |    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.versionedparcelable:versionedparcelable:1.1.1
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    +--- com.google.android.datatransport:transport-backend-cct:2.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.2.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- com.google.android.datatransport:transport-api:2.2.0
|    |    |    |    \--- com.google.dagger:dagger:2.24
|    |    |    |         \--- javax.inject:javax.inject:1
|    |    |    \--- com.google.firebase:firebase-encoders-json:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.android.datatransport:transport-runtime:2.2.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.collection:collection:1.1.0 (*)
|    |    |         +--- androidx.viewpager:viewpager:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    \--- androidx.customview:customview:1.0.0
|    |    |         |         +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |         \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         +--- androidx.loader:loader:1.0.0
|    |    |         |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-livedata:2.0.0 -> 2.1.0
|    |    |         |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.1.0 -> 2.3.1
|    |    |         |    |    |    +--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    |    |    +--- androidx.arch.core:core-runtime:2.1.0 (*)
|    |    |         |    |    |    \--- androidx.lifecycle:lifecycle-common:2.3.1 (*)
|    |    |         |    |    \--- androidx.arch.core:core-common:2.1.0 (*)
|    |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 -> 2.3.1
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.activity:activity:1.2.2 -> 1.2.3
|    |    |         |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.savedstate:savedstate:1.1.0
|    |    |         |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.arch.core:core-common:2.0.1 -> 2.1.0 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-common:2.0.0 -> 2.3.1 (*)
|    |    |         |    +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1
|    |    |         |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |         |    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         |    |    +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         |    |    \--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |         |    \--- androidx.tracing:tracing:1.0.0
|    |    |         |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         +--- androidx.lifecycle:lifecycle-livedata-core:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.3.1 (*)
|    |    |         +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    |         \--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.android.gms:play-services-tasks:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.firebase:firebase-common:19.3.0
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.auto.value:auto-value-annotations:1.6.5
|    |    |    \--- com.google.firebase:firebase-components:16.0.0
|    |    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-datatransport:17.0.3
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.datatransport:transport-api:2.1.0 -> 2.2.0
|    |    |    +--- com.google.android.datatransport:transport-backend-cct:2.1.0 -> 2.2.0 (*)
|    |    |    +--- com.google.android.datatransport:transport-runtime:2.1.0 -> 2.2.0 (*)
|    |    |    \--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    +--- com.google.firebase:firebase-encoders-json:16.0.0 (*)
|    |    +--- com.google.firebase:firebase-iid:20.1.1
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.documentfile:documentfile:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.loader:loader:1.0.0 (*)
|    |    |    |    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
|    |    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.print:print:1.0.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-stats:17.0.0
|    |    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    +--- com.google.firebase:firebase-iid-interop:17.0.0
|    |    |    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0
|    |    |    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    |    |    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    |    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    |    +--- com.google.firebase:firebase-installations:16.0.0
|    |    |    |    +--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-common:19.3.0 (*)
|    |    |    |    +--- com.google.firebase:firebase-components:16.0.0 (*)
|    |    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0
|    |    |    |         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    |    |    \--- com.google.firebase:firebase-installations-interop:16.0.0 (*)
|    |    \--- com.google.firebase:firebase-measurement-connector:18.0.0
|    |         \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    +--- androidx.cardview:cardview:[1.0.0, 1.99.99] -> 1.0.0
|    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    +--- androidx.legacy:legacy-support-v4:[1.0.0, 1.99.99] -> 1.0.0
|    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.media:media:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.versionedparcelable:versionedparcelable:1.0.0 -> 1.1.1 (*)
|    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    +--- androidx.legacy:legacy-support-core-ui:1.0.0
|    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.viewpager:viewpager:1.0.0 (*)
|    |    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0 -> 1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.drawerlayout:drawerlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.customview:customview:1.0.0 (*)
|    |    |    +--- androidx.interpolator:interpolator:1.0.0
|    |    |    |    \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |    +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.core:core:1.0.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.cursoradapter:cursoradapter:1.0.0
|    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    \--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    +--- androidx.browser:browser:[1.0.0, 1.99.99] -> 1.2.0
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.concurrent:concurrent-futures:1.0.0
|    |    |    +--- com.google.guava:listenablefuture:1.0
|    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    \--- androidx.interpolator:interpolator:1.0.0 (*)
|    +--- androidx.appcompat:appcompat:[1.0.0, 1.99.99] -> 1.4.0-alpha02
|    |    +--- androidx.annotation:annotation:1.3.0-alpha01
|    |    +--- androidx.core:core:1.6.0-beta02 (*)
|    |    +--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
|    |    +--- androidx.activity:activity:1.2.3 (*)
|    |    +--- androidx.fragment:fragment:1.3.4 (*)
|    |    +--- androidx.appcompat:appcompat-resources:1.4.0-alpha02
|    |    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    |    +--- androidx.annotation:annotation:1.2.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.vectordrawable:vectordrawable:1.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    |    \--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.vectordrawable:vectordrawable-animated:1.1.0
|    |    |         +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    |         +--- androidx.interpolator:interpolator:1.0.0 (*)
|    |    |         \--- androidx.collection:collection:1.1.0 (*)
|    |    +--- androidx.drawerlayout:drawerlayout:1.0.0 (*)
|    |    +--- androidx.savedstate:savedstate:1.1.0 (*)
|    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    +--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.startup:startup-runtime:1.0.0
|    |    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |         \--- androidx.tracing:tracing:1.0.0 (*)
|    |    +--- androidx.emoji2:emoji2-views-helper:1.0.0-alpha02
|    |    |    +--- androidx.emoji2:emoji2:1.0.0-alpha02 (*)
|    |    |    +--- androidx.collection:collection:1.1.0 (*)
|    |    |    \--- androidx.core:core:1.3.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.3.1 (*)
|    |    +--- androidx.lifecycle:lifecycle-viewmodel:2.3.1 (*)
|    |    \--- androidx.resourceinspection:resourceinspection-annotation:1.0.0-alpha02
|    |         \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- androidx.work:work-runtime:[2.0.0, 2.99.99] -> 2.7.0-alpha04
|    |    +--- androidx.annotation:annotation-experimental:1.0.0
|    |    +--- com.google.guava:listenablefuture:1.0
|    |    +--- androidx.lifecycle:lifecycle-livedata:2.1.0 (*)
|    |    +--- androidx.startup:startup-runtime:1.0.0 (*)
|    |    +--- androidx.core:core:1.5.0-beta01 -> 1.6.0-beta02 (*)
|    |    +--- androidx.room:room-runtime:2.2.5
|    |    |    +--- androidx.room:room-common:2.2.5
|    |    |    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite-framework:2.0.1 -> 2.1.0
|    |    |    |    +--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    |    \--- androidx.sqlite:sqlite:2.1.0
|    |    |    |         \--- androidx.annotation:annotation:1.0.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.sqlite:sqlite:2.0.1 -> 2.1.0 (*)
|    |    |    \--- androidx.arch.core:core-runtime:2.0.1 -> 2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite:2.1.0 (*)
|    |    +--- androidx.sqlite:sqlite-framework:2.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    \--- androidx.lifecycle:lifecycle-service:2.1.0
|    |         \--- androidx.lifecycle:lifecycle-runtime:2.1.0 -> 2.3.1 (*)
|    +--- org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72
|    |         +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.3.72
|    |         \--- org.jetbrains:annotations:13.0
|    +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72
|    |    \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
|    \--- com.google.android.gms:play-services-base:[17.0.0, 17.99.99] -> 17.1.0 (*)
+--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
+--- project :capacitor-android
|    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    +--- androidx.core:core:1.2.0 -> 1.6.0-beta02 (*)
|    +--- com.google.android.material:material:1.1.0-rc02
|    |    +--- androidx.annotation:annotation:1.0.1 -> 1.3.0-alpha01
|    |    +--- androidx.appcompat:appcompat:1.1.0 -> 1.4.0-alpha02 (*)
|    |    +--- androidx.cardview:cardview:1.0.0 (*)
|    |    +--- androidx.coordinatorlayout:coordinatorlayout:1.1.0 (*)
|    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|    |    +--- androidx.lifecycle:lifecycle-runtime:2.0.0 -> 2.3.1 (*)
|    |    +--- androidx.recyclerview:recyclerview:1.0.0 -> 1.1.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |    |    +--- androidx.customview:customview:1.0.0 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.transition:transition:1.2.0
|    |    |    +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |    |    +--- androidx.core:core:1.0.1 -> 1.6.0-beta02 (*)
|    |    |    \--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|    |    +--- androidx.vectordrawable:vectordrawable:1.1.0 (*)
|    |    \--- androidx.viewpager2:viewpager2:1.0.0
|    |         +--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    |         +--- androidx.fragment:fragment:1.1.0 -> 1.3.4 (*)
|    |         +--- androidx.recyclerview:recyclerview:1.1.0 (*)
|    |         +--- androidx.core:core:1.1.0 -> 1.6.0-beta02 (*)
|    |         \--- androidx.collection:collection:1.1.0 (*)
|    +--- androidx.browser:browser:1.2.0 (*)
|    +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0 (*)
|    +--- androidx.exifinterface:exifinterface:1.2.0
|    |    \--- androidx.annotation:annotation:1.1.0 -> 1.3.0-alpha01
|    +--- com.google.firebase:firebase-messaging:20.1.2 (*)
|    +--- com.google.android.gms:play-services-location:17.0.0
|    |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|    |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    +--- com.google.android.gms:play-services-places-placereport:17.0.0
|    |    |    \--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|    |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|    \--- org.apache.cordova:framework:7.0.0
+--- project :capacitor-cordova-android-plugins
|    +--- org.apache.cordova:framework:7.0.0
|    +--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0
|    |    \--- com.squareup.okhttp3:okhttp:3.10.0
|    |         \--- com.squareup.okio:okio:1.14.0
|    +--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
|    +--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
|    +--- com.onesignal:OneSignal:4.4.0 (*)
|    +--- com.squareup.okhttp3:okhttp:3.10.0 (*)
|    +--- com.github.exxbrain:android-biometric:0.4
|    |    \--- androidx.appcompat:appcompat:1.0.0 -> 1.4.0-alpha02 (*)
|    +--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
|    +--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
|    +--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
|    \--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01
+--- project :codetrix-studio-capacitor-google-auth
|    +--- project :capacitor-android (*)
|    \--- com.google.android.gms:play-services-auth:18.+ -> 18.1.0
|         +--- androidx.fragment:fragment:1.0.0 -> 1.3.4 (*)
|         +--- androidx.loader:loader:1.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-api-phone:17.0.0
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-auth-base:17.0.0
|         |    +--- androidx.collection:collection:1.0.0 -> 1.1.0 (*)
|         |    +--- com.google.android.gms:play-services-base:17.0.0 -> 17.1.0 (*)
|         |    +--- com.google.android.gms:play-services-basement:17.0.0 -> 17.1.1 (*)
|         |    \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
|         +--- com.google.android.gms:play-services-base:17.1.0 (*)
|         +--- com.google.android.gms:play-services-basement:17.1.1 (*)
|         \--- com.google.android.gms:play-services-tasks:17.0.0 (*)
+--- project :capacitor-apple-login
|    \--- project :capacitor-android (*)
+--- com.squareup.okhttp3:okhttp-urlconnection:3.10.0 (*)
+--- androidx.legacy:legacy-support-v4:1.+ -> 1.0.0 (*)
+--- androidx.appcompat:appcompat:1.+ -> 1.4.0-alpha02 (*)
+--- com.onesignal:OneSignal:3.15.7 -> 4.4.0 (*)
+--- com.squareup.okhttp3:okhttp:3.10.0 (*)
+--- com.github.exxbrain:android-biometric:0.4 (*)
+--- com.android.support:design:28.0.0 -> com.google.android.material:material:1.1.0-rc02 (*)
+--- com.android.support:appcompat-v7:28.0.0 -> androidx.appcompat:appcompat:1.4.0-alpha02 (*)
+--- com.android.support:support-v4:28.0.0 -> androidx.legacy:legacy-support-v4:1.0.0 (*)
\--- com.android.support:support-annotations:28.0.0 -> androidx.annotation:annotation:1.3.0-alpha01

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)
\--- junit:junit:4.12 (n)

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 5s
1 actionable task: 1 executed
iXane commented 3 years ago

Anyone?

moramjose commented 3 years ago

Same problem here.

moramjose commented 3 years ago

Anyone?

tavosansal commented 2 years ago

Same problem

jkasten2 commented 2 years ago

@josemmora @tavosansal @iXane You can safely ignore the following message in your build log:

Error 'Plugin-Version' of 'unspecified' for 'com.android.build.gradle.AppPlugin@4b6b168d' is not a valid version number
OneSignal Warning: Could not get AGP plugin version

See more details here on this https://github.com/OneSignal/OneSignal-Cordova-SDK/issues/709#issuecomment-911975291

@iXane Since you are using Ionic Capacitor which uses the OneSignal-Cordova-SDK it automatically includes the integration for this Gradle plugin, see: https://github.com/OneSignal/OneSignal-Cordova-SDK/blob/main/build-extras-onesignal.gradle#L24 By adding it again it might be causing the other odd build error about "'abstract java.lang.Object getProperty(java.lang.String)' of interface groovy.lang.GroovyObject.".