buildscript { ext.kotlin_version = '1.7.10' ext { compileSdkVersion = 34 // or latest targetSdkVersion = 34 // or latest appCompatVersion = "1.4.2" // or latest } repositories { google() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:7.2.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'dev.rikka.tools.refine:gradle-plugin:4.1.0' // Do not update! } } allprojects { repositories { google() mavenCentral() maven { // [required] background_fetch url "${project(':background_fetch').projectDir}/libs" } } } rootProject.buildDir = '../build' subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" } subprojects { project.evaluationDependsOn(':app') } tasks.register("clean", Delete) { delete rootProject.buildDir }