Open-source alternative Instagram client on Android. More maintainers needed!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

106 lines
3.5 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. apply plugin: 'com.android.application'
  2. apply plugin: "androidx.navigation.safeargs"
  3. android {
  4. compileSdkVersion 29
  5. defaultConfig {
  6. applicationId 'me.austinhuang.instagrabber'
  7. minSdkVersion 21
  8. targetSdkVersion 29
  9. versionCode 54
  10. versionName '19.0.2'
  11. multiDexEnabled true
  12. vectorDrawables.useSupportLibrary = true
  13. vectorDrawables.generatedDensities = []
  14. javaCompileOptions {
  15. annotationProcessorOptions {
  16. arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
  17. }
  18. }
  19. }
  20. compileOptions {
  21. // Flag to enable support for the new language APIs
  22. coreLibraryDesugaringEnabled true
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. sourceCompatibility JavaVersion.VERSION_1_8
  25. }
  26. buildFeatures { viewBinding true }
  27. aaptOptions { additionalParameters '--no-version-vectors' }
  28. buildTypes {
  29. debug {
  30. minifyEnabled true
  31. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  32. }
  33. release {
  34. minifyEnabled true
  35. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  36. }
  37. }
  38. }
  39. configurations.all {
  40. resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
  41. }
  42. dependencies {
  43. coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.1'
  44. def appcompat_version = "1.2.0"
  45. def nav_version = '2.3.2'
  46. implementation 'com.google.android.material:material:1.3.0-alpha04'
  47. implementation 'com.google.android.exoplayer:exoplayer-core:2.12.0'
  48. implementation 'com.google.android.exoplayer:exoplayer-ui:2.12.0'
  49. implementation "androidx.appcompat:appcompat:$appcompat_version"
  50. implementation "androidx.appcompat:appcompat-resources:$appcompat_version"
  51. implementation "androidx.recyclerview:recyclerview:1.2.0-beta01"
  52. implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  53. implementation "androidx.viewpager2:viewpager2:1.0.0"
  54. implementation "androidx.navigation:navigation-fragment:$nav_version"
  55. implementation "androidx.navigation:navigation-ui:$nav_version"
  56. implementation "androidx.constraintlayout:constraintlayout:2.0.4"
  57. implementation "androidx.preference:preference:1.1.1"
  58. implementation "androidx.work:work-runtime:2.4.0"
  59. implementation 'androidx.palette:palette:1.0.0'
  60. implementation 'com.google.guava:guava:27.0.1-android'
  61. // Room
  62. def room_version = "2.2.5"
  63. implementation "androidx.room:room-runtime:$room_version"
  64. implementation "androidx.room:room-guava:$room_version"
  65. annotationProcessor "androidx.room:room-compiler:$room_version"
  66. // implementation 'com.github.hendrawd:StorageUtil:1.1.0'
  67. implementation 'com.github.ammargitham:AutoLinkTextViewV2:master-SNAPSHOT'
  68. implementation 'org.jsoup:jsoup:1.13.1'
  69. implementation 'com.facebook.fresco:fresco:2.3.0'
  70. implementation 'com.facebook.fresco:animated-webp:2.3.0'
  71. implementation 'com.facebook.fresco:webpsupport:2.3.0'
  72. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  73. implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
  74. implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
  75. implementation 'org.apache.commons:commons-imaging:1.0-alpha2'
  76. debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.5'
  77. testImplementation 'org.junit.jupiter:junit-jupiter:5.7.0'
  78. }