nightd/app/build.gradle

34 lines
556 B
Groovy
Raw Permalink Normal View History

2025-12-07 11:14:08 +00:00
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 {
}