mirror of
https://github.com/sudoxnym/nightd.git
synced 2026-07-13 17:52:02 +00:00
34 lines
556 B
Groovy
34 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 {
|
||
|
|
}
|