Kartik Manchanda
06/03/2024, 4:15 PMDylan Bolger
06/03/2024, 4:17 PMDylan Bolger
06/03/2024, 4:18 PMcom.google.android.play:core and com.google.android.play:core-commonKartik Manchanda
06/03/2024, 4:19 PMDylan Bolger
06/03/2024, 4:21 PM./gradlew :app:dependencies --configuration compileClasspath | less to view your compile classpath and search for any reference of com.google.android.play:core in the tree.Kartik Manchanda
06/03/2024, 4:25 PMKartik Manchanda
06/03/2024, 4:31 PMDylan Bolger
06/03/2024, 4:31 PM| lessKartik Manchanda
06/03/2024, 4:33 PMDylan Bolger
06/03/2024, 4:34 PMDylan Bolger
06/03/2024, 4:35 PM--configuration compileClasspath but that output might take more time to decipher.Kartik Manchanda
06/03/2024, 4:38 PMDylan Bolger
06/03/2024, 4:45 PMKartik Manchanda
06/03/2024, 5:02 PMDylan Bolger
06/03/2024, 5:03 PMDylan Bolger
06/03/2024, 5:04 PMKartik Manchanda
06/03/2024, 5:05 PMDylan Bolger
06/03/2024, 5:05 PMinstabug, which transitively provides core-common (see the bottom of the output):
+--- project :instabug_flutter
| +--- com.instabug.library:instabug:12.7.1
| | +--- com.instabug.library:instabug-core:12.7.1
| | | +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
| | | +--- com.google.android.material:material:1.0.0
| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*)
| | | | +--- androidx.core:core:1.0.0 -> 1.10.1 (*)
| | | | +--- 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.6 (*)
| | | | +--- androidx.transition:transition:1.0.0
| | | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*)
| | | | | \--- androidx.core:core:1.0.0 -> 1.10.1 (*)
| | | | +--- androidx.appcompat:appcompat:1.0.0 -> 1.5.1 (*)
| | | | +--- androidx.cardview:cardview:1.0.0 (*)
| | | | \--- androidx.recyclerview:recyclerview:1.0.0
| | | | +--- androidx.annotation:annotation:1.0.0 -> 1.7.0 (*)
| | | | +--- androidx.core:core:1.0.0 -> 1.10.1 (*)
| | | | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
| | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.7.0 -> 1.8.22 (*)
| | | \--- androidx.multidex:multidex:2.0.0
| | +--- com.instabug.library:instabug-survey:12.7.1
| | | +--- com.instabug.library:instabug-core:12.7.1 (*)
| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0 -> 1.8.22 (*)
| | | \--- com.google.android.play:review:2.0.1
| | | +--- com.google.android.gms:play-services-basement:18.1.0 -> 18.2.0 (*)
| | | +--- com.google.android.gms:play-services-tasks:18.0.2 (*)
| | | \--- com.google.android.play:core-common:2.0.2Dylan Bolger
06/03/2024, 5:06 PM+--- project :in_app_update
| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31 -> 1.8.22 (*)
| +--- com.google.android.play:core:1.10.3
+--- project :app_review
| +--- androidx.legacy:legacy-support-v4:1.0.0 (*)
| +--- com.google.android.play:core:1.8.2 -> 1.10.3
| +--- project :package_info (*)
| \--- io.flutter:flutter_embedding_release:1.0.0-0545f8705df301877d787107bac1a6e9fc9ee1ad (*)Kartik Manchanda
06/03/2024, 5:07 PMKartik Manchanda
06/03/2024, 5:07 PMKartik Manchanda
06/03/2024, 5:07 PMDylan Bolger
06/03/2024, 5:08 PMcore-common as a dependency (probably riskier) or change your project implementations to depend on core-common instead.Dylan Bolger
06/03/2024, 5:09 PMcore-common wouldn't cause problems)Kartik Manchanda
06/03/2024, 5:09 PMDylan Bolger
06/03/2024, 5:10 PMcore-common using the following
configurations.configureEach {
exclude group: 'com.google.android.play', module: 'core-common'
}Dylan Bolger
06/03/2024, 5:11 PMKartik Manchanda
06/03/2024, 5:13 PMKartik Manchanda
06/03/2024, 5:25 PMDylan Bolger
06/03/2024, 5:25 PMDylan Bolger
06/03/2024, 5:25 PMKartik Manchanda
06/03/2024, 5:26 PMDylan Bolger
06/03/2024, 5:27 PM