nightd/app/build.gradle
2025-12-07 12:14:08 +01:00

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 {
}