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.

53 lines
1.6 KiB

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