build.gradle 1.7 KB

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