mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-21 20:47:03 -05:00
17 lines
345 B
Text
17 lines
345 B
Text
import mihon.buildlogic.AndroidConfig
|
|
import mihon.buildlogic.configureAndroid
|
|
import mihon.buildlogic.configureTest
|
|
|
|
plugins {
|
|
id("mihon.code.detekt")
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
targetSdk = AndroidConfig.TARGET_SDK
|
|
}
|
|
configureAndroid(this)
|
|
configureTest()
|
|
}
|