build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. compileSdk 32
  7. defaultConfig {
  8. applicationId "com.example.wearapp"
  9. minSdk 28
  10. targetSdk 32
  11. versionCode 1
  12. versionName "1.0"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. buildFeatures {
  21. viewBinding true
  22. }
  23. }
  24. dependencies {
  25. implementation 'androidx.navigation:navigation-ui-ktx:2.4.2'
  26. implementation 'com.squareup.retrofit2:retrofit:2.9.0'
  27. implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
  28. implementation 'com.github.bumptech.glide:glide:4.13.2'
  29. implementation "com.squareup.okhttp3:logging-interceptor:4.9.3"
  30. implementation 'io.github.pilgr:paperdb:2.7.2'
  31. implementation 'androidx.core:core-ktx:1.7.0'
  32. implementation 'com.google.android.gms:play-services-wearable:17.1.0'
  33. implementation 'androidx.percentlayout:percentlayout:1.0.0'
  34. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  35. implementation 'androidx.recyclerview:recyclerview:1.2.1'
  36. implementation 'androidx.wear:wear:1.2.0'
  37. implementation 'androidx.appcompat:appcompat:1.4.1'
  38. implementation 'com.google.android.material:material:1.6.0'
  39. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  40. }