build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 29
  6. defaultConfig {
  7. applicationId "epson.print"
  8. minSdkVersion 16
  9. targetSdkVersion 29
  10. versionCode 1
  11. versionName "1.0"
  12. multiDexEnabled true
  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. multiDexEnabled true
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. flavorDimensions 'flavor1'
  27. productFlavors {
  28. produdctflavor {
  29. dimension 'flavor1'
  30. }
  31. }
  32. }
  33. dependencies {
  34. implementation 'androidx.appcompat:appcompat:1.2.0'
  35. implementation 'com.google.android.material:material:1.2.1'
  36. implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
  37. implementation 'androidx.multidex:multidex:2.0.1'
  38. testImplementation 'junit:junit:4.+'
  39. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  40. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  41. }