Shitter-android-app/app/build.gradle

77 lines
2.1 KiB
Groovy
Raw Normal View History

plugins {
id 'com.android.application'
id 'io.michaelrocks.paranoid'
id 'ru.cleverpumpkin.proguard-dictionaries-generator'
}
2017-11-04 16:09:25 +01:00
android {
compileSdkVersion 33
buildToolsVersion '33.0.0'
2018-10-08 17:31:55 +02:00
defaultConfig {
applicationId 'org.nuclearfog.twidda'
minSdkVersion 21
targetSdkVersion 33
2022-11-06 13:08:47 +01:00
versionCode 65
versionName '2.2'
resConfigs 'en', 'de-rDE', 'zh-rCN'
}
2018-10-08 17:31:55 +02:00
buildTypes {
release {
minifyEnabled true
shrinkResources true
debuggable false
multiDexEnabled false
proguardFile 'proguard-rules.pro'
}
debug {
applicationIdSuffix '.debug'
versionNameSuffix '.DEBUG'
}
}
2021-01-16 21:37:56 +01:00
packagingOptions {
exclude '/META-INF/CHANGES'
exclude '/META-INF/DEPENDENCIES'
exclude '/META-INF/README.md'
exclude '/META-INF/androidx.*'
exclude '/META-INF/kotlin*'
exclude '/META-INF/com.*'
exclude '/META-INF/services/**'
exclude '/META-INF/com/**'
exclude '/kotlin/**'
exclude '/Debug*'
}
2021-12-17 13:57:36 +01:00
paranoid {
enabled true
}
2017-11-04 16:09:25 +01:00
}
proguardDictionaries {
dictionaryNames = ['dict/class-dictionary', 'dict/package-dictionary', 'dict/obfuscation-dictionary']
minLineLength 4
maxLineLength 8
linesCountInDictionary 12500
}
2017-11-04 16:09:25 +01:00
dependencies {
2022-10-20 19:15:36 +02:00
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
//noinspection GradleDependency
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
//noinspection GradleDependency
implementation 'com.squareup.picasso:picasso:2.8'
implementation 'com.github.open-android:Picasso-transformations:0.1.0'
implementation 'com.github.QuadFlask:colorpicker:0.0.15'
implementation 'com.github.nuclearfog:ZoomView:1.0.4'
implementation 'com.github.nuclearfog:Tagger:2.3'
implementation 'com.github.nuclearfog:LinkAndScrollMovement:1.4.1'
implementation 'com.github.kyleduo:SwitchButton:2.0.3-SNAPSHOT'
implementation 'com.github.LeonardoCardoso:Android-Link-Preview:master'
2017-11-04 16:09:25 +01:00
}