23 lines
		
	
	
		
			733 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			733 B
		
	
	
	
		
			Plaintext
		
	
	
	
// Top-level build file where you can add configuration options common to all sub-projects/modules.
 | 
						|
plugins {
 | 
						|
    alias(libs.plugins.android.application) apply false
 | 
						|
    alias(libs.plugins.kotlin.android) apply false
 | 
						|
}
 | 
						|
 | 
						|
buildscript {
 | 
						|
    repositories {
 | 
						|
        google()
 | 
						|
        mavenCentral()
 | 
						|
    }
 | 
						|
    dependencies {
 | 
						|
        classpath("com.android.tools.build:gradle:8.10.1")
 | 
						|
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Version.ClassPathVersion.kotlinVersion}")
 | 
						|
        classpath(Deps.ClassPath.hiltPlugin)
 | 
						|
        // TODO - enable later: classpath(Deps.ClassPath.gmsServices)
 | 
						|
        classpath(Deps.ClassPath.firebaseCrashlytics)
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
task("clean", Delete::class) {
 | 
						|
    delete = setOf(rootProject.buildDir)
 | 
						|
} |