mirror of
https://github.com/mihonapp/mihon.git
synced 2025-01-30 11:54:54 +01:00
19 lines
344 B
Plaintext
19 lines
344 B
Plaintext
import mihon.buildlogic.AndroidConfig
|
|
import mihon.buildlogic.configureAndroid
|
|
import mihon.buildlogic.configureTest
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
|
|
id("mihon.code.lint")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
targetSdk = AndroidConfig.TARGET_SDK
|
|
}
|
|
configureAndroid(this)
|
|
configureTest()
|
|
}
|