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.

55 lines
1.8 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
  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 16
  8. targetSdkVersion 29
  9. versionCode 48
  10. versionName '18.2'
  11. multiDexEnabled true
  12. vectorDrawables.useSupportLibrary = true
  13. vectorDrawables.generatedDensities = []
  14. }
  15. compileOptions {
  16. targetCompatibility JavaVersion.VERSION_1_8
  17. sourceCompatibility JavaVersion.VERSION_1_8
  18. }
  19. buildFeatures { viewBinding true }
  20. aaptOptions { additionalParameters '--no-version-vectors' }
  21. buildTypes {
  22. release {
  23. minifyEnabled false
  24. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  25. }
  26. }
  27. }
  28. dependencies {
  29. implementation('androidx.appcompat:appcompat:1.3.0-alpha01@aar') { transitive true }
  30. implementation "androidx.recyclerview:recyclerview:1.1.0"
  31. implementation('com.google.android.material:material:1.3.0-alpha01@aar') { transitive true }
  32. implementation('androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-rc01') { transitive true }
  33. def nav_version = "2.3.0"
  34. implementation "androidx.navigation:navigation-fragment:$nav_version"
  35. implementation "androidx.navigation:navigation-ui:$nav_version"
  36. annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
  37. implementation('org.jsoup:jsoup:1.13.1') { transitive true }
  38. implementation('com.github.bumptech.glide:glide:4.11.0') { transitive true }
  39. implementation('com.github.chrisbanes:PhotoView:v2.0.0@aar') { transitive true }
  40. implementation('com.google.android.exoplayer:exoplayer:2.11.1@aar') { transitive true }
  41. }