build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. namespace 'com.example.myview'
  6. compileSdk 32
  7. defaultConfig {
  8. applicationId "com.example.myview"
  9. minSdk 21
  10. targetSdk 32
  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.4.1'
  28. implementation 'com.google.android.material:material:1.5.0'
  29. implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
  30. testImplementation 'junit:junit:4.13.2'
  31. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  32. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  33. implementation 'androidx.palette:palette:1.0.0'
  34. implementation('com.github.bumptech.glide:glide:4.12.0') {
  35. exclude group: 'com.bumptech.glide', module: 'support-compat:27.1.1'
  36. }
  37. }