mirror of
				https://gitlab.com/foxixus/neomovies_mobile.git
				synced 2025-10-29 02:38:49 +05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			515 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			515 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| allprojects {
 | |
|     repositories {
 | |
|         google()
 | |
|         mavenCentral()
 | |
|     }
 | |
| }
 | |
| 
 | |
| val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
 | |
| rootProject.layout.buildDirectory.value(newBuildDir)
 | |
| 
 | |
| subprojects {
 | |
|     val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
 | |
|     project.layout.buildDirectory.value(newSubprojectBuildDir)
 | |
| }
 | |
| subprojects {
 | |
|     project.evaluationDependsOn(":app")
 | |
| }
 | |
| 
 | |
| tasks.register<Delete>("clean") {
 | |
|     delete(rootProject.layout.buildDirectory)
 | |
| }
 |