Форум для тех, кто программирует под Android
Anonymous
Круговая зависимость зависит от следующих проблем с задачами
Сообщение
Anonymous » 03 авг 2024, 13:13
Я столкнулся с этой проблемой и не понимаю, что происходит. Пожалуйста, помогите с этим. Я не понимаю, что происходит.
Это ошибка;
Код: Выделить всё
Circular dependency between the following tasks:
:app:extractDeepLinksRelease
\--- :app:fabricGenerateResourcesRelease
\--- :app:processReleaseManifest
\--- :app:processReleaseMainManifest
\--- :app:extractDeepLinksRelease (*)
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
> Get more help at https://help.gradle.org.
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
Мой build.gradle:
Код: Выделить всё
buildscript {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3'
classpath 'io.fabric.tools:gradle:1.28.1'
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
maven {
url "https://maven.google.com"
}
maven {
name "Tapjoy's maven repo"
url "https://sdk.tapjoy.com/"
}
maven { url "https://artifactory.appodeal.com/appodeal" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Мой файл build.gradle (приложение):
Код: Выделить всё
apply plugin: 'com.android.application'
def ofwVersion = '9.2.4'
android {
compileSdkVersion 34
namespace 'com.app.appname'
defaultConfig {
applicationId "com.app.appname"
minSdkVersion 21
targetSdkVersion 34
versionCode 5
versionName "5.0"
vectorDrawables.useSupportLibrary = true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
buildConfig = true
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.2.1'
implementation "androidx.cardview:cardview:1.0.0"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
testImplementation 'junit:junit:4.13.2'
implementation 'com.intuit.sdp:sdp-android:1.0.6'
implementation 'com.intuit.ssp:ssp-android:1.0.6'
implementation 'com.google.android.play:core:1.8.3'
implementation platform('com.google.firebase:firebase-bom:26.1.0')
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-core:21.1.0'
implementation 'com.google.firebase:firebase-messaging:23.0.7'
implementation 'in.codeshuffle.scratchcardlayout:ScratchCardLayout:1.0.8'
implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
implementation 'com.agrawalsuneet.androidlibs:dotsloader:1.4'
implementation 'com.github.aabhasr1:OtpView:v1.1.2'
implementation 'cc.cloudist.acplibrary:library:1.2.1'
implementation 'com.github.mmoamenn:LuckyWheel_Android:0.3.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
def work_version = "2.7.0"
implementation "androidx.work:work-runtime:$work_version"
implementation "androidx.work:work-runtime-ktx:$work_version"
implementation 'com.google.android.gms:play-services-ads:21.1.0'
implementation 'com.google.android.gms:play-services-auth:20.2.0'
implementation 'com.google.android.gms:play-services-gcm:17.0.0'
implementation 'com.google.android.ads:mediation-test-suite:2.0.0'
implementation 'com.facebook.android:audience-network-sdk:6.1.0'
implementation 'com.startapp:inapp-sdk:4.10.1'
implementation 'com.pollfish:pollfish-googleplay:6.2.4'
compileOnly 'com.fyber:fyber-annotations:1.3.0'
implementation 'com.fyber:offerwall-sdk:' + ofwVersion
implementation 'com.ironsource.sdk:mediationsdk:7.1.1'
implementation 'com.tapjoy:tapjoy-android-sdk:12.10.0'
implementation 'com.jakewharton:butterknife:10.2.3'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
implementation 'com.vungle:publisher-sdk-android:6.11.0'
implementation 'com.unity3d.ads:unity-ads:3.7.0'
implementation "com.applovin:applovin-sdk:+"
implementation 'com.adcolony:sdk:4.6.4'
implementation 'androidx.navigation:navigation-fragment:2.5.1'
implementation 'androidx.navigation:navigation-ui:2.5.1'
implementation 'com.google.ads.mediation:facebook:5.9.0.1'
implementation 'com.github.oneconnectapi:OneConnectLib:v1.0.9'
implementation 'com.android.billingclient:billing:6.0.1'
implementation 'com.appodeal.ads.sdk:core:2.11.0'
implementation 'com.appodeal.ads.sdk.networks:bidmachine:2.11.0.20'
implementation 'com.anjlab.android.iab.v3:library:1.0.44'
implementation 'com.loopj.android:android-async-http:1.4.11'
implementation 'com.victor:lib:1.0.4'
implementation 'com.github.gemeauxph:MaterialLoadingIndicator:1.0.4'
}
apply plugin: 'io.fabric'
apply plugin: 'com.google.gms.google-services'
Пожалуйста, дайте мне знать, как решить эту проблему.
Подробнее здесь:
https://stackoverflow.com/questions/788 ... ask-issues
1722680003
Anonymous
Я столкнулся с этой проблемой и не понимаю, что происходит. Пожалуйста, помогите с этим. Я не понимаю, что происходит. Это ошибка; [code]Circular dependency between the following tasks: :app:extractDeepLinksRelease \--- :app:fabricGenerateResourcesRelease \--- :app:processReleaseManifest \--- :app:processReleaseMainManifest \--- :app:extractDeepLinksRelease (*) * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. > Get more help at https://help.gradle.org. Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. [/code] Мой build.gradle: [code]buildscript { repositories { google() jcenter() mavenCentral() maven { url 'https://jitpack.io' } maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'com.android.tools.build:gradle:8.5.0' classpath 'com.google.gms:google-services:4.3.10' classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3' classpath 'io.fabric.tools:gradle:1.28.1' } } allprojects { repositories { google() jcenter() mavenCentral() maven { url "https://jitpack.io" } maven { url "https://maven.google.com" } maven { name "Tapjoy's maven repo" url "https://sdk.tapjoy.com/" } maven { url "https://artifactory.appodeal.com/appodeal" } } } task clean(type: Delete) { delete rootProject.buildDir } [/code] Мой файл build.gradle (приложение): [code]apply plugin: 'com.android.application' def ofwVersion = '9.2.4' android { compileSdkVersion 34 namespace 'com.app.appname' defaultConfig { applicationId "com.app.appname" minSdkVersion 21 targetSdkVersion 34 versionCode 5 versionName "5.0" vectorDrawables.useSupportLibrary = true testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } buildFeatures { buildConfig = true } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.google.android.material:material:1.2.1' implementation "androidx.cardview:cardview:1.0.0" implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.recyclerview:recyclerview:1.2.1' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' testImplementation 'junit:junit:4.13.2' implementation 'com.intuit.sdp:sdp-android:1.0.6' implementation 'com.intuit.ssp:ssp-android:1.0.6' implementation 'com.google.android.play:core:1.8.3' implementation platform('com.google.firebase:firebase-bom:26.1.0') implementation 'com.google.firebase:firebase-analytics' implementation 'com.google.firebase:firebase-core:21.1.0' implementation 'com.google.firebase:firebase-messaging:23.0.7' implementation 'in.codeshuffle.scratchcardlayout:ScratchCardLayout:1.0.8' implementation 'de.hdodenhof:circleimageview:3.1.0' implementation 'com.android.support:multidex:1.0.3' implementation 'com.android.volley:volley:1.1.1' implementation 'com.google.code.gson:gson:2.8.6' implementation 'com.github.bumptech.glide:glide:4.11.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' implementation 'com.agrawalsuneet.androidlibs:dotsloader:1.4' implementation 'com.github.aabhasr1:OtpView:v1.1.2' implementation 'cc.cloudist.acplibrary:library:1.2.1' implementation 'com.github.mmoamenn:LuckyWheel_Android:0.3.0' implementation 'com.android.support:recyclerview-v7:28.0.0' def work_version = "2.7.0" implementation "androidx.work:work-runtime:$work_version" implementation "androidx.work:work-runtime-ktx:$work_version" implementation 'com.google.android.gms:play-services-ads:21.1.0' implementation 'com.google.android.gms:play-services-auth:20.2.0' implementation 'com.google.android.gms:play-services-gcm:17.0.0' implementation 'com.google.android.ads:mediation-test-suite:2.0.0' implementation 'com.facebook.android:audience-network-sdk:6.1.0' implementation 'com.startapp:inapp-sdk:4.10.1' implementation 'com.pollfish:pollfish-googleplay:6.2.4' compileOnly 'com.fyber:fyber-annotations:1.3.0' implementation 'com.fyber:offerwall-sdk:' + ofwVersion implementation 'com.ironsource.sdk:mediationsdk:7.1.1' implementation 'com.tapjoy:tapjoy-android-sdk:12.10.0' implementation 'com.jakewharton:butterknife:10.2.3' annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3' implementation 'com.vungle:publisher-sdk-android:6.11.0' implementation 'com.unity3d.ads:unity-ads:3.7.0' implementation "com.applovin:applovin-sdk:+" implementation 'com.adcolony:sdk:4.6.4' implementation 'androidx.navigation:navigation-fragment:2.5.1' implementation 'androidx.navigation:navigation-ui:2.5.1' implementation 'com.google.ads.mediation:facebook:5.9.0.1' implementation 'com.github.oneconnectapi:OneConnectLib:v1.0.9' implementation 'com.android.billingclient:billing:6.0.1' implementation 'com.appodeal.ads.sdk:core:2.11.0' implementation 'com.appodeal.ads.sdk.networks:bidmachine:2.11.0.20' implementation 'com.anjlab.android.iab.v3:library:1.0.44' implementation 'com.loopj.android:android-async-http:1.4.11' implementation 'com.victor:lib:1.0.4' implementation 'com.github.gemeauxph:MaterialLoadingIndicator:1.0.4' } apply plugin: 'io.fabric' apply plugin: 'com.google.gms.google-services' [/code] Пожалуйста, дайте мне знать, как решить эту проблему. Подробнее здесь: [url]https://stackoverflow.com/questions/78826985/circular-dependency-depends-on-following-task-issues[/url]
Круговая зависимость зависит от следующих проблем с задачами
Anonymous »
02 авг 2024, 23:02 » в форуме
JAVA
Я столкнулся с этой проблемой и не понимаю, что происходит. Пожалуйста, помогите с этим. Я не понимаю, что происходит.
Это ошибка;
Circular dependency between the following tasks:
:app:extractDeepLinksRelease
\---...
0 Ответы
56 Просмотры
Последнее сообщение Anonymous
02 авг 2024, 23:02
0 Ответы
63 Просмотры
Последнее сообщение Anonymous
02 авг 2024, 23:02
Круговая зависимость зависит от следующих проблем с задачами
Anonymous »
03 авг 2024, 13:13 » в форуме
JAVA
Я столкнулся с этой проблемой и не понимаю, что происходит. Пожалуйста, помогите с этим. Я не понимаю, что происходит.
Это ошибка;
Circular dependency between the following tasks:
:app:extractDeepLinksRelease
\---...
0 Ответы
38 Просмотры
Последнее сообщение Anonymous
03 авг 2024, 13:13
Круговая зависимость между следующими задачами
Anonymous »
12 окт 2024, 18:47 » в форуме
Android
Я пытаюсь решить эту задачу более 5 часов. В чем может быть проблема?
Circular dependency between the following tasks:
:app:checkManifestChangesDevelopDebug
\--- :app:instantRunMainApkResourcesDevelopDebug
\---...
0 Ответы
26 Просмотры
Последнее сообщение Anonymous
12 окт 2024, 18:47
0 Ответы
30 Просмотры
Последнее сообщение Anonymous
14 окт 2024, 11:15