mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-01-15 21:53:41 +01:00
* Abstraction layer backup * Removed DataEntity, was unnecessary for now * Separated network, persistence, entities and interaction, closes #29 * Renamed binding * Removed build files, example tests Removed build files, example tests * Fixed build files were not being ignored all around app * Updated CI ymls * Small changes * Fixed legacy repository package names * Fixed CQ findings * Updated Fastlane * Packaging changes and version upgrades * Removed core from interactors * Version bumps * Added new module graph
21 lines
672 B
Groovy
21 lines
672 B
Groovy
apply from: "$rootProject.projectDir/scripts/cq/detekt.gradle"
|
|
apply from: "$rootProject.projectDir/scripts/cq/dokka.gradle"
|
|
apply from: "$rootProject.projectDir/scripts/cq/jacoco.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"
|
|
}
|
|
}
|