mirror of
https://github.com/mihonapp/mihon.git
synced 2025-01-01 05:47:12 +01:00
777ae2461e
Annoying. More annoying in this project.
17 lines
317 B
Plaintext
17 lines
317 B
Plaintext
import mihon.buildlogic.AndroidConfig
|
|
import mihon.buildlogic.configureAndroid
|
|
import mihon.buildlogic.configureTest
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
targetSdk = AndroidConfig.TARGET_SDK
|
|
}
|
|
configureAndroid(this)
|
|
configureTest()
|
|
}
|