36 lines
632 B
Groovy
36 lines
632 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'dev.vendicated.vencord'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "dev.vendicated.vencord"
|
|
minSdk 21
|
|
targetSdk 33
|
|
versionCode 3
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".dbg"
|
|
}
|
|
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.annotation:annotation:1.5.0'
|
|
}
|
|
|