discord-jadx/app/build.gradle

39 lines
794 B
Groovy
Raw Normal View History

2021-06-27 20:44:35 +00:00
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId 'com.discord'
minSdkVersion 21
targetSdkVersion 29
2021-06-27 20:53:42 +00:00
versionCode 81107
versionName "81.7 - Beta"
2021-06-27 20:44:35 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
}
dependencies {
// some dependencies
}