build.gradle 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. import java.text.SimpleDateFormat
  2. plugins {
  3. id 'com.android.application'
  4. }
  5. android {
  6. compileSdkVersion rootProject.ext.android.compileSdkVersion
  7. defaultConfig {
  8. applicationId rootProject.ext.version.applicationId
  9. minSdkVersion rootProject.ext.android.minSdkVersion
  10. targetSdkVersion rootProject.ext.android.targetSdkVersion
  11. versionCode rootProject.ext.version.versionCode
  12. versionName rootProject.ext.version.versionName
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. signingConfigs {
  16. release {
  17. storeFile file('greatself.jks')
  18. keyAlias 'great'
  19. keyPassword 'great123456'
  20. storePassword 'great123456'
  21. }
  22. }
  23. dataBinding.enabled true
  24. buildTypes {
  25. release {
  26. minifyEnabled false
  27. zipAlignEnabled false
  28. signingConfig signingConfigs.release
  29. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  30. buildConfigField "String", "API_HOST", rootProject.ext.release.apiHost
  31. buildConfigField "String", "API_PATH", rootProject.ext.release.apiName
  32. buildConfigField "String", "FILEAPI_HOST", rootProject.ext.release.fileApiHost
  33. buildConfigField "String", "FILEAPI_PATH", rootProject.ext.release.fileApiName
  34. buildConfigField "String", "prjectName", rootProject.ext.release.prjectName
  35. }
  36. debug {
  37. // debuggable true // 是否调试
  38. minifyEnabled false
  39. zipAlignEnabled false
  40. signingConfig signingConfigs.release
  41. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  42. buildConfigField "String", "API_HOST", rootProject.ext.debug.apiHost
  43. buildConfigField "String", "API_PATH", rootProject.ext.debug.apiName
  44. buildConfigField "String", "FILEAPI_HOST", rootProject.ext.debug.fileApiHost
  45. buildConfigField "String", "FILEAPI_PATH", rootProject.ext.debug.fileApiName
  46. buildConfigField "String", "prjectName", rootProject.ext.debug.prjectName
  47. }
  48. }
  49. sourceSets {
  50. main {
  51. jniLibs.srcDirs = ['libs']
  52. }
  53. }
  54. compileOptions {
  55. sourceCompatibility JavaVersion.VERSION_1_8
  56. targetCompatibility JavaVersion.VERSION_1_8
  57. }
  58. lint {
  59. abortOnError false
  60. checkReleaseBuilds false
  61. }
  62. namespace 'com.hw.nativeapp'
  63. android.applicationVariants.all {
  64. variant ->
  65. variant.outputs.all {
  66. //在这里修改apk文件名
  67. def df = new SimpleDateFormat('yyyyMMdd')
  68. outputFileName = "PDA_${variant.name}_${df.format(new Date())}_${variant.versionName}_${variant.versionCode}.apk"
  69. }
  70. }
  71. }
  72. dependencies {
  73. implementation fileTree(include: ['*.aar','*.jar'], dir: 'libs')
  74. // implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: [])
  75. implementation 'androidx.multidex:multidex:2.0.0'
  76. implementation 'com.google.android.material:material:1.1.0'
  77. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  78. implementation 'androidx.navigation:navigation-fragment:2.2.2'
  79. implementation 'androidx.navigation:navigation-ui:2.2.2'
  80. implementation 'androidx.viewpager:viewpager:1.0.0'
  81. testImplementation 'junit:junit:4.+'
  82. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  83. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  84. implementation 'com.xw.repo:xedittext:2.1.0@aar'
  85. api 'com.jakewharton:butterknife:10.2.3'
  86. annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
  87. implementation 'com.squareup.retrofit2:converter-scalars:2.2.0'
  88. implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
  89. implementation 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
  90. implementation 'de.hdodenhof:circleimageview:2.2.0'
  91. implementation 'androidx.cardview:cardview:1.0.0'
  92. implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.34'
  93. implementation 'com.jakewharton:butterknife:10.2.3'
  94. implementation 'com.blankj:utilcode:1.30.5'
  95. api 'io.reactivex.rxjava2:rxjava:2.0.6'
  96. api 'io.reactivex.rxjava2:rxandroid:2.0.1'
  97. implementation 'com.squareup.okhttp3:okhttp:3.8.1'
  98. implementation 'com.hjq:titlebar:5.0'
  99. // implementation 'org.xutils:xutils:3.4.0'
  100. implementation 'com.alibaba:fastjson:1.2.8'
  101. implementation 'com.google.zxing:core:3.4.1'
  102. implementation('com.journeyapps:zxing-android-embedded:3.6.0') { transitive = false }
  103. //文件下载--升级
  104. implementation 'com.liulishuo.filedownloader:library:1.7.4'
  105. // 图片加载
  106. implementation 'com.squareup.picasso:picasso:2.5.2'
  107. implementation 'com.google.android.material:material:1.2.1'
  108. implementation 'androidx.recyclerview:recyclerview:1.1.0'
  109. implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0'
  110. implementation 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0'
  111. implementation 'cn.yhq:android-dialog:1.6.0'
  112. implementation 'androidx.appcompat:appcompat:1.1.0'
  113. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  114. testImplementation 'junit:junit:4.13'
  115. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  116. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  117. implementation 'com.github.bumptech.glide:glide:4.8.0'
  118. annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
  119. implementation 'com.github.bumptech.glide:okhttp3-integration:4.8.0'
  120. //新版SDK 只需要集成这一个包即可完成所有流程
  121. implementation "com.sunmi:SunmiEID-SDK:1.3.11"
  122. }
  123. // SH1: 84:DD:2A:D6:4A:63:12:6B:06:9F:24:38:1F:57:32:8F:4D:5F:EE:78