build.gradle 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  32. multiDexEnabled true
  33. }
  34. }
  35. compileOptions {
  36. sourceCompatibility JavaVersion.VERSION_11
  37. targetCompatibility JavaVersion.VERSION_11
  38. }
  39. flavorDimensions 'flavor1'
  40. productFlavors {
  41. produdctflavor {
  42. dimension 'flavor1'
  43. }
  44. }
  45. }
  46. dependencies {
  47. implementation fileTree(dir: 'libs', include: ['*.jar'])
  48. implementation 'androidx.appcompat:appcompat:1.6.1'
  49. implementation 'com.google.android.material:material:1.9.0'
  50. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  51. testImplementation 'junit:junit:4.13.2'
  52. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  53. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  54. implementation 'androidx.multidex:multidex:2.0.1'
  55. implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
  56. }