mirror of
https://github.com/hmalik144/EasyCC_Master.git
synced 2025-12-10 03:05:29 +00:00
- Synthetic views replaced with latest view binding - Hilt DI replaces kodein - Viewmodel factories removed - Updated to latest android version - Migrated to Hilt instrumentation testing
12 lines
428 B
Groovy
12 lines
428 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '7.2.2' apply false
|
|
id 'com.android.library' version '7.2.2' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
|
|
id 'com.google.dagger.hilt.android' version '2.43.2' apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|