1
0
Fork 0
VendroidEnhanced/app/build.gradle
Henry Hiles 48e84f8e93
Add better loading screen (#4)
* Add loading, including a spinner, and the default discord background color.

* Add light mode support.
2022-12-18 22:00:56 +01:00

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