Это ошибка;
Код: Выделить всё
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.
Код: Выделить всё
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
}
Код: Выделить всё
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'
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb бббббббббббббббббббб
Подробнее здесь: https://stackoverflow.com/questions/788 ... ask-issues