mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-01-14 21:23:45 +01:00
* Working with material styles * Replaced deprecated ViewModelProviders.of and applied base styles with material components * Various code style fixes and styles.xml improvements
19 lines
558 B
Groovy
19 lines
558 B
Groovy
apply from: "$rootProject.projectDir/scripts/default_dependencies.gradle"
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdkVersion
|
|
buildToolsVersion versions.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion versions.minSdkVersion
|
|
targetSdkVersion versions.targetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
testOptions.unitTests.all {
|
|
jvmArgs "-XX:+UnlockExperimentalVMOptions", "-XX:+UseCGroupMemoryLimitForHeap"
|
|
}
|
|
}
|