build.gradle 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 33
  6. defaultConfig {
  7. applicationId "epson.print"
  8. minSdkVersion 16
  9. targetSdkVersion 33
  10. versionCode 100001
  11. versionName "1.0.1"
  12. multiDexEnabled true
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. debug {
  17. minifyEnabled false
  18. multiDexEnabled false
  19. }
  20. release {
  21. minifyEnabled true
  22. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  23. multiDexEnabled true
  24. }
  25. }
  26. compileOptions {
  27. sourceCompatibility JavaVersion.VERSION_1_8
  28. targetCompatibility JavaVersion.VERSION_1_8
  29. }
  30. flavorDimensions 'flavor1'
  31. productFlavors {
  32. produdctflavor {
  33. dimension 'flavor1'
  34. }
  35. }
  36. }
  37. dependencies {
  38. implementation fileTree(dir: 'libs', include: ['*.jar'])
  39. implementation 'androidx.appcompat:appcompat:1.6.1'
  40. implementation 'com.google.android.material:material:1.9.0'
  41. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  42. testImplementation 'junit:junit:4.13.2'
  43. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  44. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  45. implementation 'androidx.multidex:multidex:2.0.1'
  46. implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
  47. }