Closed FarshidRoohi closed 3 years ago
Oh boy, these are always a pain to debug unfortunately. What other plugins are you using? One of them is going to have a dependency conflict.
My plugins:
plugins {
id("com.android.application")
id("com.github.triplet.play")
id("kotlin-allopen")
id("com.google.gms.google-services")
id("com.apollographql.apollo")
id("kotlin-android")
id("io.github.imanx.i18n")
kotlin("android")
kotlin("android.extensions")
kotlin("kapt")
}
dependencies classpath:
const val androidToolsGradle = "com.android.tools.build:gradle:4.2.1"
const val gms = "com.google.gms:google-services:4.3.8"
const val apollo = "com.apollographql.apollo:apollo-gradle-plugin:2.5.9"
const val firebaseCrashlytics = "com.google.firebase:firebase-crashlytics-gradle:2.7.1"
const val plugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
const val allopen = "org.jetbrains.kotlin:kotlin-allopen:1.5.21"
const val stdlib = "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.21"
const val gpp = "com.github.triplet.gradle:play-publisher:3.4.0-agp4.2"
Do you have any ideas to solve this problem?
I would guess it's either Apollo or i18n. You can run ./gradlew app:buildEnv
to get a list of dependencies.
If the problem is with Apollo or i18n, how can I solve it?
Starting a Gradle Daemon (subsequent builds will be faster)
> Task :buildSrc:compileKotlin
The `kotlin-dsl` plugin applied to project ':buildSrc' enables experimental Kotlin compiler features. For more information see https://docs.gradle.org/6.7.1/userguide/kotlin_dsl.html#sec:kotlin-dsl_plugin
w: Runtime JAR files in the classpath should have the same version. These files were found in the classpath:
/Users/xyz/.gradle/wrapper/dists/gradle-6.7.1-all/2moa8rlfac5eqlcfgk98k0deb/gradle-6.7.1/lib/kotlin-stdlib-1.3.72.jar (version 1.3)
/Users/xyz/.gradle/wrapper/dists/gradle-6.7.1-all/2moa8rlfac5eqlcfgk98k0deb/gradle-6.7.1/lib/kotlin-stdlib-common-1.3.72.jar (version 1.3)
/Users/xyz/.gradle/wrapper/dists/gradle-6.7.1-all/2moa8rlfac5eqlcfgk98k0deb/gradle-6.7.1/lib/kotlin-stdlib-jdk7-1.3.72.jar (version 1.3)
/Users/xyz/.gradle/wrapper/dists/gradle-6.7.1-all/2moa8rlfac5eqlcfgk98k0deb/gradle-6.7.1/lib/kotlin-stdlib-jdk8-1.3.72.jar (version 1.3)
/Users/xyz/.gradle/wrapper/dists/gradle-6.7.1-all/2moa8rlfac5eqlcfgk98k0deb/gradle-6.7.1/lib/kotlin-reflect-1.3.72.jar (version 1.3)
/Users/xyz/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.4.31/e613be5465ef1e6fd0468707690b7ebf625ea2fe/kotlin-stdlib-jdk8-1.4.31.jar (version 1.4)
/Users/xyz/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-reflect/1.4.31/63db9d66c3d20f7b8f66196e7ba86969daae8b8a/kotlin-reflect-1.4.31.jar (version 1.4)
/Users/xyz/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.4.31/84ce8e85f6e84270b2b501d44e9f0ba6ff64fa71/kotlin-stdlib-jdk7-1.4.31.jar (version 1.4)
/Users/xyz/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.4.31/a58e0fb9812a6a93ca24b5da75e4b5a0cb89c957/kotlin-stdlib-1.4.31.jar (version 1.4)
/Users/xyz/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-common/1.4.31/6dd50665802f54ba9bc3f70ecb20227d1bc81323/kotlin-stdlib-common-1.4.31.jar (version 1.4)
w: Consider providing an explicit dependency on kotlin-reflect 1.4 to prevent strange errors
w: Some runtime JAR files in the classpath have an incompatible version. Consider removing them from the classpath
> Configure project :app
WARNING:: The option setting 'android.enableR8=true' is deprecated.
It will be removed in version 7.0 of the Android Gradle plugin.
You will no longer be able to disable R8
Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.
kotlin-stdlib-jdk7 added as implementation
appcompat added as implementation
cardview added as implementation
recyclerview added as implementation
material added as implementation
constraintlayout added as implementation
transition added as implementation
core-ktx added as implementation
biometric added as implementation
lifecycle-runtime added as implementation
lifecycle-extensions added as implementation
lifecycle-common-java8 added as implementation
lifecycle-viewmodel-ktx added as implementation
apollo-runtime added as implementation
apollo-android-support added as implementation
apollo-coroutines-support added as implementation
kotlinx-coroutines-core added as implementation
kotlinx-coroutines-android added as implementation
dagger-android-processor added as kapt
dagger-android-support added as implementation
dagger added as implementation
dagger-compiler added as kapt
retrofit added as implementation
converter-gson added as implementation
firebase-core added as implementation
firebase-messaging added as implementation
firebase-analytics added as implementation
firebase-messaging-ktx added as implementation
hellocharts-library added as implementation
MPAndroidChart added as implementation
glide added as implementation
compiler added as kapt
junit added as testImplementation
mockito-core added as testImplementation
mockito-inline added as testImplementation
core-testing added as testImplementation
kotlinx-coroutines-test added as testImplementation
robolectric added as testImplementation
powermock-api-mockito2 added as testImplementation
powermock-core added as testImplementation
powermock-module-junit4 added as testImplementation
powermock-module-junit4-rule added as testImplementation
core-ktx added as testImplementation
junit-ktx added as testImplementation
core-testing added as androidTestImplementation
core added as androidTestImplementation
runner added as androidTestImplementation
espresso-core added as androidTestImplementation
espresso-intents added as androidTestImplementation
truth added as androidTestImplementation
rules added as androidTestImplementation
junit-ktx added as androidTestImplementation
mockito-android added as androidTestImplementation
dexopener added as androidTestImplementation
dagger-compiler added as kaptAndroidTest
dagger-compiler added as kaptTest
Persian-Date-Picker-Dialog added as implementation
PersianDate added as implementation
work-runtime added as implementation
gson added as implementation
viewpump added as implementation
picasso added as implementation
library added as implementation
swirl added as implementation
roundedimageview added as implementation
ion added as implementation
hawk added as implementation
customAdapterRecycleView added as implementation
installreferrer added as implementation
pin-edittext-field added as implementation
core-ktx added as implementation
sentry-android added as implementation
markdown-processor added as implementation
WARNING:: Using flatDir should be avoided because it doesn't support any meta-data formats.
> Configure project :introslider
Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.
WARNING:: Using flatDir should be avoided because it doesn't support any meta-data formats.
> Configure project :xyzviews
Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.
WARNING:: Using flatDir should be avoided because it doesn't support any meta-data formats.
> Task :app:buildEnvironment
------------------------------------------------------------
Project :app
------------------------------------------------------------
classpath
No dependencies
A web-based, searchable dependency report is available by adding the --scan option.
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.7.1/userguide/command_line_interface.html#sec:command_line_warnings
BUILD SUCCESSFUL in 37s
1 actionable task: 1 executed
Mmmm, then you want plain ./gradlew buildEnv
instead.
> Configure project :app
WARNING:: The option setting 'android.enableR8=true' is deprecated.
It will be removed in version 7.0 of the Android Gradle plugin.
You will no longer be able to disable R8
Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.
kotlin-stdlib-jdk7 added as implementation
appcompat added as implementation
cardview added as implementation
recyclerview added as implementation
material added as implementation
constraintlayout added as implementation
transition added as implementation
core-ktx added as implementation
biometric added as implementation
lifecycle-runtime added as implementation
lifecycle-extensions added as implementation
lifecycle-common-java8 added as implementation
lifecycle-viewmodel-ktx added as implementation
apollo-runtime added as implementation
apollo-android-support added as implementation
apollo-coroutines-support added as implementation
kotlinx-coroutines-core added as implementation
kotlinx-coroutines-android added as implementation
dagger-android-processor added as kapt
dagger-android-support added as implementation
dagger added as implementation
dagger-compiler added as kapt
retrofit added as implementation
converter-gson added as implementation
firebase-core added as implementation
firebase-messaging added as implementation
firebase-analytics added as implementation
firebase-messaging-ktx added as implementation
hellocharts-library added as implementation
MPAndroidChart added as implementation
glide added as implementation
compiler added as kapt
junit added as testImplementation
mockito-core added as testImplementation
mockito-inline added as testImplementation
core-testing added as testImplementation
kotlinx-coroutines-test added as testImplementation
robolectric added as testImplementation
powermock-api-mockito2 added as testImplementation
powermock-core added as testImplementation
powermock-module-junit4 added as testImplementation
powermock-module-junit4-rule added as testImplementation
core-ktx added as testImplementation
junit-ktx added as testImplementation
core-testing added as androidTestImplementation
core added as androidTestImplementation
runner added as androidTestImplementation
espresso-core added as androidTestImplementation
espresso-intents added as androidTestImplementation
truth added as androidTestImplementation
rules added as androidTestImplementation
junit-ktx added as androidTestImplementation
mockito-android added as androidTestImplementation
dexopener added as androidTestImplementation
dagger-compiler added as kaptAndroidTest
dagger-compiler added as kaptTest
Persian-Date-Picker-Dialog added as implementation
PersianDate added as implementation
work-runtime added as implementation
gson added as implementation
viewpump added as implementation
picasso added as implementation
library added as implementation
swirl added as implementation
roundedimageview added as implementation
ion added as implementation
hawk added as implementation
customAdapterRecycleView added as implementation
installreferrer added as implementation
pin-edittext-field added as implementation
core-ktx added as implementation
sentry-android added as implementation
markdown-processor added as implementation
WARNING:: Using flatDir should be avoided because it doesn't support any meta-data formats.
> Configure project :introslider
Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.
WARNING:: Using flatDir should be avoided because it doesn't support any meta-data formats.
> Configure project :xyzviews
Warning: The 'kotlin-android-extensions' Gradle plugin is deprecated. Please use this migration guide (https://goo.gle/kotlin-android-extensions-deprecation) to start working with View Binding (https://developer.android.com/topic/libraries/view-binding) and the 'kotlin-parcelize' plugin.
WARNING:: Using flatDir should be avoided because it doesn't support any meta-data formats.
> Task :buildEnvironment
------------------------------------------------------------
Root project
------------------------------------------------------------
classpath
+--- com.android.tools.build:gradle:4.2.1
| +--- com.google.flatbuffers:flatbuffers-java:1.12.0
| +--- org.tensorflow:tensorflow-lite-metadata:0.1.0-rc2
| | +--- org.checkerframework:checker-qual:2.5.8 -> 3.8.0
| | \--- com.google.flatbuffers:flatbuffers-java:1.12.0
| +--- com.android.tools.build:builder:4.2.1
| | +--- com.android.tools.build:builder-model:4.2.1
| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 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.android.tools:annotations:27.2.1
| | +--- 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
| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| | | | +--- com.android.tools:annotations:27.2.1
| | | | \--- com.google.guava:guava:28.1-jre -> 30.1.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:3.8.0
| | | | +--- com.google.errorprone:error_prone_annotations:2.5.1
| | | | \--- com.google.j2objc:j2objc-annotations:1.3
| | | +--- net.sf.kxml:kxml2:2.3.0
| | | \--- com.google.protobuf:protobuf-java:3.10.0
| | +--- com.android.tools:sdklib:27.2.1
| | | +--- com.android.tools.layoutlib:layoutlib-api:27.2.1
| | | | +--- com.android.tools:common:27.2.1 (*)
| | | | +--- 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 -> 30.1.1-jre (*)
| | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| | | +--- 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 -> 4.5.13
| | | | +--- org.apache.httpcomponents:httpcore:4.4.13 -> 4.4.14
| | | | +--- commons-logging:commons-logging:1.2
| | | | \--- commons-codec:commons-codec:1.11
| | | \--- org.apache.httpcomponents:httpcore:4.4.10 -> 4.4.14
| | +--- com.android.tools:sdk-common:27.2.1
| | | +--- com.android.tools:sdklib:27.2.1 (*)
| | | +--- com.android.tools.build:builder-test-api:4.2.1 (*)
| | | +--- com.android.tools.build:builder-model:4.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 -> 30.1.1-jre (*)
| | | | +--- com.google.code.gson:gson:2.8.6
| | | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| | | | \--- 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 -> 1.3.72 (*)
| | | +--- org.jetbrains.kotlin:kotlin-reflect:1.4.31 -> 1.3.72
| | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.72 (*)
| | | +--- 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 -> 4.2.1-7147631
| | | | \--- com.google.protobuf:protobuf-java:3.10.0
| | | \--- xerces:xercesImpl:2.12.0
| | | \--- xml-apis:xml-apis:1.4.01
| | +--- 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 -> 1.3.72 (*)
| | | \--- 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 -> 30.1.1-jre (*)
| | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| | +--- 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 -> 30.1.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 -> 1.3.72 (*)
| | +--- 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:aapt2-proto:4.2.1-7147631 (*)
| +--- com.android.tools.build:aaptcompiler:4.2.1
| | +--- com.android.tools.build:aapt2-proto:4.2.1-7147631 (*)
| | +--- com.android.tools.layoutlib:layoutlib-api:27.2.1 (*)
| | +--- com.google.guava:guava:28.1-jre -> 30.1.1-jre (*)
| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| +--- com.android.tools.analytics-library:crash:27.2.1
| | +--- com.android.tools:annotations:27.2.1
| | +--- com.google.guava:guava:28.1-jre -> 30.1.1-jre (*)
| | +--- org.apache.httpcomponents:httpmime:4.5.6 (*)
| | +--- org.apache.httpcomponents:httpcore:4.4.10 -> 4.4.14
| | \--- org.apache.httpcomponents:httpclient:4.5.6 -> 4.5.13 (*)
| +--- 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: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 -> 1.3.72 (*)
| | | \--- net.sf.kxml:kxml2:2.3.0
| | +--- 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 -> 30.1.1-jre (*)
| | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| | | \--- org.ow2.asm:asm:7.0
| | +--- org.jetbrains.kotlin:kotlin-reflect:1.4.31 -> 1.3.72 (*)
| | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| | \--- com.google.guava:guava:28.1-jre -> 30.1.1-jre (*)
| +--- com.android.tools.build:gradle-api:4.2.1 (*)
| +--- androidx.databinding:databinding-compiler-common:4.2.1
| | +--- androidx.databinding:databinding-common:4.2.1
| | +--- com.android.databinding:baseLibrary:4.2.1
| | +--- org.antlr:antlr4:4.5.3
| | +--- commons-io:commons-io:2.4 -> 2.6
| | +--- com.googlecode.juniversalchardet:juniversalchardet:1.0.3
| | +--- com.google.guava:guava:28.1-jre -> 30.1.1-jre (*)
| | +--- com.squareup:javapoet:1.10.0
| | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| | +--- com.google.code.gson:gson:2.8.6
| | +--- org.glassfish.jaxb:jaxb-runtime:2.3.2 (*)
| | +--- com.android.tools:annotations:27.2.1
| | \--- com.android.tools.build.jetifier:jetifier-core:1.0.0-beta09
| | +--- com.google.code.gson:gson:2.8.0 -> 2.8.6
| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.72 (*)
| +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31 -> 1.3.72 (*)
| +--- com.android.tools.build:transform-api:2.0.0-deprecated-use-gradle-api
| +--- org.ow2.asm:asm:7.0
| +--- org.ow2.asm:asm-analysis:7.0 (*)
| +--- org.ow2.asm:asm-commons:7.0 (*)
| +--- org.ow2.asm:asm-util:7.0 (*)
| +--- net.sf.jopt-simple:jopt-simple:4.9
| +--- net.sf.proguard:proguard-gradle:6.0.3
| | \--- net.sf.proguard:proguard-base:6.0.3
| +--- com.android.tools.build:bundletool:1.1.0
| | +--- com.android.tools.build:aapt2-proto:4.1.0-alpha01-6193524 -> 4.2.1-7147631 (*)
| | +--- com.google.auto.value:auto-value-annotations:1.6.2 -> 1.7.4
| | +--- com.google.errorprone:error_prone_annotations:2.3.1 -> 2.5.1
| | +--- com.google.guava:guava:27.0.1-jre -> 30.1.1-jre (*)
| | +--- com.google.protobuf:protobuf-java:3.4.0 -> 3.10.0
| | +--- com.google.protobuf:protobuf-java-util:3.4.0 -> 3.10.0
| | | +--- com.google.protobuf:protobuf-java:3.10.0
| | | +--- com.google.guava:guava:28.0-android -> 30.1.1-jre (*)
| | | +--- com.google.errorprone:error_prone_annotations:2.3.2 -> 2.5.1
| | | \--- com.google.code.gson:gson:2.8.5 -> 2.8.6
| | +--- com.google.dagger:dagger:2.28.3
| | | \--- javax.inject:javax.inject:1
| | \--- javax.inject:javax.inject:1
| +--- com.android.tools.build.jetifier:jetifier-core:1.0.0-beta09 (*)
| +--- com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta09
| | +--- com.android.tools.build.jetifier:jetifier-core:1.0.0-beta09 (*)
| | +--- org.ow2.asm:asm:6.0 -> 7.0
| | +--- org.ow2.asm:asm-util:6.0 -> 7.0 (*)
| | +--- org.ow2.asm:asm-commons:6.0 -> 7.0 (*)
| | +--- org.jdom:jdom2:2.0.6
| | \--- org.jetbrains.kotlin:kotlin-stdlib:1.3.60 -> 1.3.72 (*)
| +--- com.squareup:javapoet:1.10.0
| +--- com.google.protobuf:protobuf-java:3.10.0
| +--- com.google.protobuf:protobuf-java-util:3.10.0 (*)
| +--- com.google.crypto.tink:tink:1.3.0-rc2
| | +--- com.google.protobuf:protobuf-java:3.10.0
| | \--- org.json:json:20180813
| \--- com.google.testing.platform:core-proto:0.0.8-alpha01
+--- com.apollographql.apollo:apollo-gradle-plugin:2.5.9
| \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.0 -> 1.3.72 (*)
+--- com.google.firebase:firebase-crashlytics-gradle:2.7.1
| \--- com.google.firebase:firebase-crashlytics-buildtools:2.7.1
| +--- org.apache.httpcomponents:httpclient:4.5.6 -> 4.5.13 (*)
| +--- commons-cli:commons-cli:1.4
| +--- commons-io:commons-io:2.6
| \--- com.google.guava:guava:24.1-jre -> 30.1.1-jre (*)
+--- com.google.gms:google-services:4.3.8
| +--- com.google.android.gms:strict-version-matcher-plugin:1.2.2
| | +--- com.google.code.findbugs:jsr305:3.0.2
| | +--- com.google.guava:guava:27.0.1-jre -> 30.1.1-jre (*)
| | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10 -> 1.3.72 (*)
| +--- com.google.code.gson:gson:2.8.5 -> 2.8.6
| \--- com.google.guava:guava:27.0.1-jre -> 30.1.1-jre (*)
+--- org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21
| +--- org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.5.21
| | +--- org.jetbrains.kotlin:kotlin-native-utils:1.5.21
| | | \--- org.jetbrains.kotlin:kotlin-util-io:1.5.21
| | \--- org.jetbrains.kotlin:kotlin-project-model:1.5.21
| +--- org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.5.21
| +--- org.jetbrains.kotlin:kotlin-util-klib:1.5.21
| | \--- org.jetbrains.kotlin:kotlin-util-io:1.5.21
| +--- org.jetbrains.kotlin:kotlin-klib-commonizer-api:1.5.21
| | \--- org.jetbrains.kotlin:kotlin-native-utils:1.5.21 (*)
| +--- org.jetbrains.kotlin:kotlin-tooling-metadata:1.5.21
| | \--- com.google.code.gson:gson:2.8.6
| +--- org.jetbrains.kotlin:kotlin-project-model:1.5.21
| +--- com.google.code.gson:gson:2.8.6
| +--- com.google.guava:guava:29.0-jre -> 30.1.1-jre (*)
| +--- de.undercouch:gradle-download-task:4.1.1
| +--- com.github.gundy:semver4j:0.16.4
| +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.21
| | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.5.21
| | \--- org.jetbrains.intellij.deps:trove4j:1.0.20181211
| +--- org.jetbrains.kotlin:kotlin-annotation-processing-gradle:1.5.21
| | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.21 (*)
| +--- org.jetbrains.kotlin:kotlin-android-extensions:1.5.21
| | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.21 (*)
| +--- org.jetbrains.kotlin:kotlin-compiler-runner:1.5.21
| | +--- org.jetbrains.kotlin:kotlin-build-common:1.5.21
| | +--- org.jetbrains.kotlin:kotlin-daemon-client:1.5.21
| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8
| | +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8
| | \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.5.21 (*)
| +--- org.jetbrains.kotlin:kotlin-scripting-compiler-embeddable:1.5.21
| | \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.5.21
| | +--- org.jetbrains.kotlin:kotlin-scripting-common:1.5.21
| | | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8
| | +--- org.jetbrains.kotlin:kotlin-scripting-jvm:1.5.21
| | | \--- org.jetbrains.kotlin:kotlin-scripting-common:1.5.21 (*)
| | \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8
| \--- org.jetbrains.kotlin:kotlin-scripting-compiler-impl-embeddable:1.5.21 (*)
+--- org.jetbrains.kotlin:kotlin-allopen:1.5.21
| +--- org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.5.21 (*)
| +--- org.jetbrains.kotlin:kotlin-gradle-plugin-model:1.5.21
| \--- org.jetbrains.kotlin:kotlin-stdlib:1.5.21 -> 1.3.72 (*)
+--- com.github.triplet.gradle:play-publisher:3.4.0-agp4.2
| +--- com.github.triplet.gradle:android-publisher:3.4.0-agp4.2
| | +--- com.github.triplet.gradle:common-utils:3.4.0-agp4.2
| | +--- com.google.apis:google-api-services-androidpublisher:v3-rev20201125-1.31.0
| | | \--- com.google.api-client:google-api-client:1.31.1 -> 1.31.3
| | | +--- com.google.oauth-client:google-oauth-client:1.31.4
| | | | +--- com.google.http-client:google-http-client:1.38.0 -> 1.39.2
| | | | | +--- org.apache.httpcomponents:httpclient:4.5.13 (*)
| | | | | +--- org.apache.httpcomponents:httpcore:4.4.14
| | | | | +--- com.google.code.findbugs:jsr305:3.0.2
| | | | | +--- com.google.guava:guava:30.1.1-android -> 30.1.1-jre (*)
| | | | | +--- com.google.j2objc:j2objc-annotations:1.3
| | | | | +--- io.opencensus:opencensus-api:0.28.0
| | | | | | \--- io.grpc:grpc-context:1.27.2
| | | | | \--- io.opencensus:opencensus-contrib-http-util:0.28.0
| | | | | +--- io.opencensus:opencensus-api:0.28.0 (*)
| | | | | \--- com.google.guava:guava:29.0-android -> 30.1.1-jre (*)
| | | | \--- com.google.guava:guava:30.1-android -> 30.1.1-jre (*)
| | | +--- com.google.http-client:google-http-client-gson:1.39.0 -> 1.39.2
| | | | +--- com.google.http-client:google-http-client:1.39.2 (*)
| | | | \--- com.google.code.gson:gson:2.8.6
| | | +--- com.google.guava:guava:30.1-android -> 30.1.1-jre (*)
| | | +--- com.google.http-client:google-http-client-apache-v2:1.39.0 -> 1.39.2
| | | | +--- com.google.http-client:google-http-client:1.39.2 (*)
| | | | +--- org.apache.httpcomponents:httpclient:4.5.13 (*)
| | | | \--- org.apache.httpcomponents:httpcore:4.4.14
| | | +--- org.apache.httpcomponents:httpcore:4.4.14
| | | +--- org.apache.httpcomponents:httpclient:4.5.13 (*)
| | | \--- com.google.http-client:google-http-client:1.39.0 -> 1.39.2 (*)
| | +--- com.google.api-client:google-api-client:1.31.3 (*)
| | +--- com.google.auth:google-auth-library-oauth2-http:0.25.2
| | | +--- com.google.auto.value:auto-value-annotations:1.7.4
| | | +--- com.google.code.findbugs:jsr305:3.0.2
| | | +--- com.google.auth:google-auth-library-credentials:0.25.2
| | | +--- com.google.http-client:google-http-client:1.39.1 -> 1.39.2 (*)
| | | +--- com.google.http-client:google-http-client-gson:1.39.1 -> 1.39.2 (*)
| | | \--- com.google.guava:guava:30.1-android -> 30.1.1-jre (*)
| | \--- com.google.http-client:google-http-client-apache-v2:1.39.2 (*)
| +--- com.github.triplet.gradle:common-utils:3.4.0-agp4.2
| +--- com.github.triplet.gradle:common-validation:3.4.0-agp4.2
| +--- com.google.guava:guava:30.1.1-jre (*)
| \--- com.google.http-client:google-http-client-gson:1.39.2 (*)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-reflect:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:{strictly 1.3.72} -> 1.3.72 (c)
+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.3.72} -> 1.3.72 (c)
\--- org.jetbrains:annotations:{strictly 13.0} -> 13.0 (c)
(c) - dependency constraint
(*) - dependencies omitted (listed previously)
A web-based, searchable dependency report is available by adding the --scan option.
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.7.1/userguide/command_line_interface.html#sec:command_line_warnings
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
I'm not seeing the other plugins you mentioned... Can you run that command on the projects where those plugins are applied? Or an easier way might be to comment out the plugins and see if GPP works then.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Describe the bug
I use gitlab CI generate new APK and publish Play Store I run
bootstrapProductionRelease --stacktrace
but build failed with an exceptionVersions
Tasks executed
Android Studio Exception:
CI exception: