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.7 KiB

5 years ago
4 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. applicationId 'me.austinhuang.instagrabber'
  6. minSdkVersion 16
  7. targetSdkVersion 29
  8. // REMEMBER TO CHANGE versionCode as well
  9. // 16.7 is 32
  10. // next version: fixed natgeotravel mention text problem
  11. versionCode 32
  12. versionName '16.7'
  13. multiDexEnabled true
  14. vectorDrawables.useSupportLibrary = true
  15. vectorDrawables.generatedDensities = []
  16. }
  17. compileOptions {
  18. targetCompatibility JavaVersion.VERSION_1_8
  19. sourceCompatibility JavaVersion.VERSION_1_8
  20. }
  21. buildFeatures { viewBinding true }
  22. aaptOptions { additionalParameters '--no-version-vectors' }
  23. buildTypes {
  24. release {
  25. minifyEnabled false
  26. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  27. }
  28. }
  29. }
  30. dependencies {
  31. implementation('androidx.appcompat:appcompat:1.3.0-alpha01@aar') { transitive true }
  32. implementation('androidx.recyclerview:recyclerview:1.2.0-alpha03@aar') { transitive true }
  33. implementation('com.google.android.material:material:1.3.0-alpha01@aar') { transitive true }
  34. implementation('androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-rc01') { transitive true }
  35. annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
  36. implementation('org.jsoup:jsoup:1.13.1') { transitive true }
  37. implementation('com.github.bumptech.glide:glide:4.11.0') { transitive true }
  38. implementation('com.github.chrisbanes:PhotoView:v2.0.0@aar') { transitive true }
  39. implementation('com.google.android.exoplayer:exoplayer:2.11.1@aar') { transitive true }
  40. }