2020-07-01 19:08:28 +02:00
|
|
|
apply plugin: 'com.android.application'
|
2020-08-17 15:49:51 +02:00
|
|
|
apply plugin: "androidx.navigation.safeargs"
|
2020-07-01 19:08:28 +02:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 29
|
|
|
|
|
|
|
|
defaultConfig {
|
2020-11-07 17:55:44 +01:00
|
|
|
applicationId 'me.austinhuang.instagrabber'
|
2020-07-01 19:08:28 +02:00
|
|
|
|
2020-09-21 14:02:18 +02:00
|
|
|
minSdkVersion 21
|
2020-07-01 19:08:28 +02:00
|
|
|
targetSdkVersion 29
|
|
|
|
|
2020-11-30 18:46:44 +01:00
|
|
|
versionCode 54
|
|
|
|
versionName '19.0.2'
|
2020-07-01 19:08:28 +02:00
|
|
|
|
|
|
|
multiDexEnabled true
|
|
|
|
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
|
|
|
vectorDrawables.generatedDensities = []
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
2020-10-17 12:07:03 +02:00
|
|
|
// Flag to enable support for the new language APIs
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
|
2020-07-01 19:08:28 +02:00
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFeatures { viewBinding true }
|
|
|
|
|
|
|
|
aaptOptions { additionalParameters '--no-version-vectors' }
|
|
|
|
|
|
|
|
buildTypes {
|
2020-12-05 21:17:46 +01:00
|
|
|
debug {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
|
2020-07-01 19:08:28 +02:00
|
|
|
release {
|
2020-12-05 21:17:46 +01:00
|
|
|
minifyEnabled true
|
2020-07-01 19:08:28 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-24 11:10:21 +02:00
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
|
|
|
|
}
|
|
|
|
|
2020-07-01 19:08:28 +02:00
|
|
|
dependencies {
|
2020-12-05 21:17:46 +01:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1'
|
2020-10-17 12:07:03 +02:00
|
|
|
|
2020-08-29 10:01:42 +02:00
|
|
|
def appcompat_version = "1.2.0"
|
2020-12-05 21:17:46 +01:00
|
|
|
def nav_version = '2.3.2'
|
2020-08-29 10:01:42 +02:00
|
|
|
|
2020-12-05 21:17:46 +01:00
|
|
|
implementation 'com.google.android.material:material:1.3.0-alpha04'
|
2020-11-05 19:34:01 +01:00
|
|
|
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-core:2.12.0'
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer-ui:2.12.0'
|
2020-09-12 08:35:10 +02:00
|
|
|
|
2020-08-29 10:01:42 +02:00
|
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
|
|
|
implementation "androidx.appcompat:appcompat-resources:$appcompat_version"
|
2020-12-05 21:17:46 +01:00
|
|
|
implementation "androidx.recyclerview:recyclerview:1.2.0-beta01"
|
2020-08-29 10:01:42 +02:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
|
|
implementation "androidx.viewpager2:viewpager2:1.0.0"
|
2020-08-17 15:49:51 +02:00
|
|
|
implementation "androidx.navigation:navigation-fragment:$nav_version"
|
|
|
|
implementation "androidx.navigation:navigation-ui:$nav_version"
|
2020-11-01 07:02:54 +01:00
|
|
|
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
|
2020-10-17 12:07:03 +02:00
|
|
|
implementation "androidx.preference:preference:1.1.1"
|
|
|
|
implementation "androidx.work:work-runtime:2.4.0"
|
2020-11-01 07:02:54 +01:00
|
|
|
implementation 'androidx.palette:palette:1.0.0'
|
2020-10-17 12:07:03 +02:00
|
|
|
|
|
|
|
implementation 'com.google.guava:guava:27.0.1-android'
|
2020-08-30 08:47:04 +02:00
|
|
|
|
2020-12-05 21:17:46 +01:00
|
|
|
// Room
|
|
|
|
def room_version = "2.2.5"
|
|
|
|
implementation "androidx.room:room-runtime:$room_version"
|
|
|
|
implementation "androidx.room:room-guava:$room_version"
|
|
|
|
annotationProcessor "androidx.room:room-compiler:$room_version"
|
|
|
|
|
2020-11-05 19:34:01 +01:00
|
|
|
// implementation 'com.github.hendrawd:StorageUtil:1.1.0'
|
2020-10-24 11:10:21 +02:00
|
|
|
implementation 'com.github.ammargitham:AutoLinkTextViewV2:master-SNAPSHOT'
|
2020-08-17 15:49:51 +02:00
|
|
|
|
2020-08-29 10:01:42 +02:00
|
|
|
implementation 'org.jsoup:jsoup:1.13.1'
|
|
|
|
implementation 'com.facebook.fresco:fresco:2.3.0'
|
2020-11-10 14:41:22 +01:00
|
|
|
implementation 'com.facebook.fresco:animated-webp:2.3.0'
|
|
|
|
implementation 'com.facebook.fresco:webpsupport:2.3.0'
|
2020-07-01 19:08:28 +02:00
|
|
|
|
2020-08-29 10:01:42 +02:00
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
|
|
implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
|
2020-08-30 08:47:04 +02:00
|
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
2020-09-11 18:56:15 +02:00
|
|
|
|
2020-11-10 13:43:53 +01:00
|
|
|
implementation 'org.apache.commons:commons-imaging:1.0-alpha2'
|
2020-11-05 19:34:01 +01:00
|
|
|
|
2020-10-17 12:07:03 +02:00
|
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.5'
|
|
|
|
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.7.0'
|
2020-07-01 19:08:28 +02:00
|
|
|
}
|