build.gradle 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 30
  6. buildToolsVersion "30.0.1"
  7. defaultConfig {
  8. applicationId "club.thepenguins.android"
  9. minSdkVersion 21
  10. targetSdkVersion 30
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. }
  26. dependencies {
  27. implementation 'androidx.appcompat:appcompat:1.3.0'
  28. implementation 'com.google.android.material:material:1.3.0'
  29. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  30. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  31. testImplementation 'junit:junit:4.+'
  32. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  33. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  34. implementation 'com.google.android.material:material:1.3.0'
  35. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  36. implementation 'com.google.code.gson:gson:2.8.7'
  37. implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
  38. implementation 'com.squareup.okhttp3:logging-interceptor:3.3.0'
  39. implementation 'com.squareup.picasso:picasso:2.8'
  40. implementation 'org.jsoup:jsoup:1.11.1'
  41. implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
  42. implementation "androidx.recyclerview:recyclerview:1.2.1"
  43. }