build.gradle 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. buildToolsVersion '29.0.2'
  5. defaultConfig {
  6. applicationId "com.example.myinfo"
  7. minSdkVersion 22
  8. targetSdkVersion 28
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: 'libs', include: ['*.jar'])
  22. implementation 'androidx.appcompat:appcompat:1.1.0'
  23. implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta3'
  24. testImplementation 'junit:junit:4.13-rc-2'
  25. androidTestImplementation 'androidx.test:runner:1.3.0-alpha02'
  26. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha02'
  27. implementation 'com.github.bumptech.glide:glide:3.7.0'
  28. implementation 'jp.wasabeef:glide-transformations:2.0.1'
  29. }