mirror of
				https://github.com/johrpan/musicus_mobile.git
				synced 2025-10-26 18:57:25 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			582 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			582 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| buildscript {
 | |
|     ext.kotlin_version = '1.3.50'
 | |
|     repositories {
 | |
|         google()
 | |
|         jcenter()
 | |
|     }
 | |
| 
 | |
|     dependencies {
 | |
|         classpath 'com.android.tools.build:gradle:3.5.0'
 | |
|         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
 | |
|     }
 | |
| }
 | |
| 
 | |
| allprojects {
 | |
|     repositories {
 | |
|         google()
 | |
|         jcenter()
 | |
|     }
 | |
| }
 | |
| 
 | |
| rootProject.buildDir = '../build'
 | |
| subprojects {
 | |
|     project.buildDir = "${rootProject.buildDir}/${project.name}"
 | |
| }
 | |
| subprojects {
 | |
|     project.evaluationDependsOn(':app')
 | |
| }
 | |
| 
 | |
| task clean(type: Delete) {
 | |
|     delete rootProject.buildDir
 | |
| }
 | 
