mirror of
https://github.com/sudoxnym/nightd.git
synced 2026-05-22 13:38:56 +00:00
33 lines
556 B
Groovy
33 lines
556 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.sudox.nightd'
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.sudox.nightd"
|
|
minSdk 21
|
|
targetSdk 34
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
}
|