mirror of
https://github.com/mihonapp/mihon.git
synced 2025-01-03 23:07:13 +01:00
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()
|
||
|
}
|