mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-27 12:53:55 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			699 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			699 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| // Top-level build file where you can add configuration options common to all sub-projects/modules.
 | |
| buildscript {
 | |
|     ext.kotlin_version = '1.1.51'
 | |
|     repositories {
 | |
|         jcenter()
 | |
|         mavenCentral()
 | |
|         google()
 | |
|     }
 | |
|     dependencies {
 | |
|         classpath 'com.android.tools.build:gradle:3.0.1'
 | |
|         classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
 | |
|         classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.1'
 | |
|         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
 | |
|     }
 | |
| }
 | |
| 
 | |
| allprojects {
 | |
|     repositories {
 | |
|         jcenter()
 | |
|         maven { url "https://jitpack.io" }
 | |
|         maven { url "https://maven.google.com" }
 | |
|         google()
 | |
|     }
 | |
| }
 | 
