build.gradle 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. apply plugin: 'com.google.gms.google-services'
  5. android {
  6. compileSdkVersion 31
  7. buildToolsVersion "30.0.2"
  8. defaultConfig {
  9. applicationId "club.thepenguins.android"
  10. minSdkVersion 21
  11. targetSdkVersion 31
  12. versionCode 1
  13. versionName "1.0"
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation platform('com.google.firebase:firebase-bom:28.2.1')
  29. implementation 'androidx.appcompat:appcompat:1.4.1'
  30. implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
  31. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  32. testImplementation 'junit:junit:'
  33. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  35. implementation 'com.google.android.material:material:1.5.0'
  36. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  37. implementation 'com.google.code.gson:gson:2.8.7'
  38. implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
  39. implementation 'com.squareup.okhttp3:logging-interceptor:3.3.0'
  40. implementation 'com.squareup.picasso:picasso:2.8'
  41. implementation 'org.jsoup:jsoup:1.11.1'
  42. implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  43. implementation 'androidx.recyclerview:recyclerview:1.2.1'
  44. implementation 'com.facebook.shimmer:shimmer:0.5.0'
  45. implementation 'com.google.firebase:firebase-messaging'
  46. implementation 'com.github.GrenderG:Toasty:1.5.0'
  47. implementation 'androidx.webkit:webkit:1.4.0'
  48. implementation 'com.github.lisawray.groupie:groupie:2.9.0'
  49. }