mirror of
				https://github.com/ImranR98/Obtainium.git
				synced 2025-11-04 07:13:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			457 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			457 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
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
 | 
						|
}
 |