48e84f8e93
* Add loading, including a spinner, and the default discord background color. * Add light mode support.
47 lines
957 B
Groovy
47 lines
957 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"
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
// Add these in ~/.gradle/gradle.properties
|
|
storeFile file(KEYSTORE_FILE)
|
|
storePassword KEYSTORE_PASSWORD
|
|
keyAlias KEYSTORE_ALIAS
|
|
keyPassword KEYSTORE_PASSWORD
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix ".dbg"
|
|
}
|
|
|
|
release {
|
|
minifyEnabled false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.annotation:annotation:1.5.0'
|
|
}
|
|
|