Initial QSfera import
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
apply plugin: 'com.android.library'
|
||||
apply plugin: 'kotlin-android'
|
||||
|
||||
android {
|
||||
compileSdkVersion sdkCompileVersion
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion sdkMinVersion
|
||||
targetSdkVersion sdkTargetVersion
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = JavaVersion.VERSION_17.toString()
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
namespace "eu.qsfera.android.testutil"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':qsferaDomain')
|
||||
implementation project(':qsferaData')
|
||||
implementation project(':qsferaComLibrary')
|
||||
implementation libs.kotlin.stdlib
|
||||
implementation libs.androidx.lifecycle.livedata.ktx
|
||||
|
||||
// Detekt
|
||||
detektPlugins libs.detekt.formatting
|
||||
detektPlugins libs.detekt.libraries
|
||||
}
|
||||
|
||||
tasks.withType(io.gitlab.arturbosch.detekt.Detekt).configureEach {
|
||||
jvmTarget = "17"
|
||||
}
|
||||
Reference in New Issue
Block a user