54 lines
1.2 KiB
Groovy
54 lines
1.2 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
id 'org.jlleitschuh.gradle.ktlint'
|
|
id 'com.github.ben-manes.versions'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion androidCompileSdkVersion
|
|
defaultConfig {
|
|
applicationId "com.mikhaellopez.pokecardcompose.designsystem"
|
|
minSdk androidMinSdkVersion
|
|
targetSdk androidTargetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt')
|
|
}
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion composeCompilerVersion
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
}
|
|
|
|
ktlint {
|
|
verbose = true
|
|
android = true
|
|
}
|
|
|
|
dependencies {
|
|
// MODULE
|
|
implementation project(':design:ui')
|
|
|
|
// KOTLIN
|
|
implementation kotlinStdlib
|
|
// ANDROIDX
|
|
implementation androidXAppCompat
|
|
|
|
// DEPENDENCY CHECK STRATEGY
|
|
dependencyUpdates.resolutionStrategy dependencyUpdatesStrategy
|
|
} |