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.

121 lines
4.1 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 56
  10. versionName '19.0.4'
  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-beta01'
  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.6"
  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. // CameraX
  67. def camerax_version = "1.0.0-rc01"
  68. implementation "androidx.camera:camera-camera2:$camerax_version"
  69. implementation "androidx.camera:camera-lifecycle:$camerax_version"
  70. implementation "androidx.camera:camera-view:1.0.0-alpha20"
  71. // EmojiCompat
  72. def emoji_compat_version = "1.1.0"
  73. implementation "androidx.emoji:emoji:$emoji_compat_version"
  74. implementation "androidx.emoji:emoji-appcompat:$emoji_compat_version"
  75. // implementation 'com.github.hendrawd:StorageUtil:1.1.0'
  76. implementation 'me.austinhuang:AutoLinkTextViewV2:-SNAPSHOT'
  77. implementation 'org.jsoup:jsoup:1.13.1'
  78. implementation 'com.facebook.fresco:fresco:2.3.0'
  79. implementation 'com.facebook.fresco:animated-webp:2.3.0'
  80. implementation 'com.facebook.fresco:webpsupport:2.3.0'
  81. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  82. implementation 'com.squareup.retrofit2:converter-scalars:2.9.0'
  83. implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
  84. implementation 'org.apache.commons:commons-imaging:1.0-alpha2'
  85. implementation 'com.ibm.icu:icu4j:68.1'
  86. implementation 'com.github.ammargitham:uCrop:2.3-native-beta-2'
  87. implementation 'com.github.ammargitham:android-gpuimage:2.1.1-beta4'
  88. debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.6'
  89. testImplementation 'org.junit.jupiter:junit-jupiter:5.7.0'
  90. }