build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. namespace 'com.sharix.sportsmanfriend'
  6. compileSdk 33
  7. defaultConfig {
  8. applicationId "com.sharix.sportsmanfriend"
  9. minSdk 23
  10. targetSdk 33
  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. buildFeatures {
  22. viewBinding true
  23. }
  24. compileOptions {
  25. sourceCompatibility JavaVersion.VERSION_1_8
  26. targetCompatibility JavaVersion.VERSION_1_8
  27. }
  28. }
  29. dependencies {
  30. implementation 'com.github.rahatarmanahmed:circularprogressview:2.5.0'
  31. implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  32. implementation 'com.google.android.gms:play-services-location:21.0.1'
  33. implementation 'org.osmdroid:osmdroid-android:6.1.14'
  34. implementation 'com.github.MKergall:osmbonuspack:6.9.0'
  35. implementation 'androidx.appcompat:appcompat:1.6.1'
  36. implementation 'com.google.android.material:material:1.9.0'
  37. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  38. implementation 'androidx.test.espresso:espresso-core:3.5.1'
  39. implementation 'androidx.test.ext:junit:1.1.5'
  40. }