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.

50 lines
1.6 KiB

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