43 lines
891 B
Groovy
43 lines
891 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'dev.vendicated.vencord'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "dev.vendicated.vencord"
|
|
minSdk 21
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
// Add these in ~/.gradle/gradle.properties
|
|
storeFile file(KEYSTORE_FILE)
|
|
storePassword KEYSTORE_PASSWORD
|
|
keyAlias KEYSTORE_ALIAS
|
|
keyPassword KEYSTORE_PASSWORD
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.annotation:annotation:1.5.0'
|
|
}
|
|
|