mirror of
https://github.com/nuclearfog/Shitter.git
synced 2025-01-08 16:12:17 +01:00
d74188dd07
Signed-off-by: nuclearfog <hatespirit666@gmail.com>
64 lines
2.2 KiB
Groovy
64 lines
2.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'io.michaelrocks.paranoid'
|
|
apply plugin: 'ru.cleverpumpkin.proguard-dictionaries-generator'
|
|
|
|
android {
|
|
buildToolsVersion '30.0.3'
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
applicationId 'org.nuclearfog.twidda'
|
|
minSdkVersion 16
|
|
targetSdkVersion 30
|
|
versionCode 41
|
|
versionName '1.8.17'
|
|
// limiting language support for smaller APK size
|
|
resConfigs 'en', 'de-rDE', 'zh-rCN'
|
|
vectorDrawables.useSupportLibrary true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
debuggable false
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
minifyEnabled false
|
|
applicationIdSuffix '.debug'
|
|
versionNameSuffix '.DEBUG'
|
|
}
|
|
}
|
|
|
|
paranoid {
|
|
enabled true
|
|
}
|
|
}
|
|
|
|
proguardDictionaries {
|
|
dictionaryNames = ['dict/class-dictionary', 'dict/package-dictionary', 'dict/obfuscation-dictionary']
|
|
minLineLength 1 // minimum package name length
|
|
maxLineLength 6 // maximum package name length
|
|
linesCountInDictionary 3000 // maximum class count
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
implementation 'org.twitter4j:twitter4j-core:4.0.7'
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
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.2'
|
|
implementation 'com.github.nuclearfog:Tagger:2.2'
|
|
implementation 'com.github.nuclearfog:LinkAndScrollMovement:1.4'
|
|
implementation 'com.github.kyleduo:SwitchButton:2.0.3-SNAPSHOT'
|
|
implementation 'com.github.LeonardoCardoso:Android-Link-Preview:master'
|
|
} |