build.gradle 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. apply plugin: 'com.android.application'
  2. //apply plugin: 'AndResGuard'
  3. android {
  4. signingConfigs {
  5. udapda {
  6. keyAlias 'as_jc_wms'
  7. keyPassword 'pdakeystone'
  8. storeFile file('C:\\sigin\\jc_wms.jks')
  9. storePassword 'pdakeystone'
  10. }
  11. }
  12. compileSdkVersion rootProject.ext.android.compileSdkVersion
  13. buildToolsVersion rootProject.ext.android.buildToolsVersion
  14. defaultConfig {
  15. applicationId "com.uas.jc_wms"
  16. minSdkVersion rootProject.ext.android.minSdkVersion
  17. targetSdkVersion rootProject.ext.android.targetSdkVersion
  18. versionCode rootProject.ext.android.versionCode
  19. versionName rootProject.ext.android.versionName
  20. javaCompileOptions {
  21. annotationProcessorOptions {
  22. includeCompileClasspath = true
  23. }
  24. }
  25. }
  26. buildTypes {
  27. release {
  28. minifyEnabled false
  29. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  30. }
  31. }
  32. packagingOptions {
  33. exclude 'META-INF/LICENSE.txt'
  34. exclude 'META-INF/NOTICE.txt'
  35. }
  36. applicationVariants.all { variant ->
  37. variant.outputs.all { output ->
  38. def outputFile = output.outputFile
  39. def fileName
  40. if (outputFile != null && outputFile.name.endsWith('.apk')) {
  41. if (variant.buildType.name.equals('release')) {
  42. def releaseInfo = getVersionName()
  43. fileName = "极测仓储管理_${releaseInfo}.apk"
  44. } else if (variant.buildType.name.equals('debug')) {
  45. def debugInfo = getVersionName()
  46. fileName = "LG_UAS_PDA_SMART_COM_LGDEBUG_${debugInfo}.apk"
  47. }
  48. outputFileName = fileName
  49. }
  50. }
  51. }
  52. compileOptions {
  53. targetCompatibility 1.8
  54. sourceCompatibility 1.8
  55. }
  56. }
  57. dependencies {
  58. implementation fileTree(include: ['*.jar'], dir: 'libs')
  59. implementation 'com.android.support:appcompat-v7:28.0.0'
  60. implementation 'com.android.support.constraint:constraint-layout:2.0.1'
  61. testImplementation 'junit:junit:4.12'
  62. api files('libs/volley.jar')
  63. api files('li' +
  64. 'bs/gson-2.2.4.jar')
  65. api project(':pulltoreflashlibrary')
  66. api project(':progresslitelibrary')
  67. api project(':lib-zxing')
  68. implementation deps.appcompatV7
  69. implementation deps.stetho
  70. implementation deps.fastjson
  71. implementation deps.xUtils
  72. implementation deps.okhttp
  73. implementation project(':bluetooth')
  74. implementation deps.switchView
  75. implementation deps.BaseRecyclerViewAdapterHelper
  76. implementation deps.smartRefreshLayout
  77. implementation deps.smartRefreshHeader
  78. implementation deps.recyclerview
  79. implementation deps.permisson
  80. implementation deps.basePopup
  81. implementation deps.smartTable
  82. implementation 'com.umeng.umsdk:common:9.4.0'// 必选
  83. implementation 'com.umeng.umsdk:asms:1.2.3'// 必选
  84. implementation 'com.umeng.umsdk:apm:1.4.0' // 错误分析升级为独立SDK,看crash数据请一定集成,可选
  85. implementation 'com.tbruyelle.rxpermissions:rxpermissions:0.9.3'
  86. }
  87. def getVersionName() {
  88. return rootProject.ext.android.versionName
  89. }
  90. /*andResGuard {
  91. // mappingFile = file("./resource_mapping.txt")
  92. mappingFile = null
  93. use7zip = true
  94. useSign = true
  95. // 打开这个开关,会keep住所有资源的原始路径,只混淆资源的名字
  96. keepRoot = false
  97. whiteList = [
  98. // for your icon
  99. "R.mipmap.icon",
  100. // for fabric
  101. "R.string.com.crashlytics.*",
  102. // for google-services
  103. "R.string.google_app_id",
  104. "R.string.gcm_defaultSenderId",
  105. "R.string.default_web_client_id",
  106. "R.string.ga_trackingId",
  107. "R.string.firebase_database_url",
  108. "R.string.google_api_key",
  109. "R.string.google_crash_reporting_api_key",
  110. //for umeng
  111. "R.anim.umeng*",
  112. "R.string.umeng*",
  113. "R.string.UM*",
  114. "R.string.tb_*",
  115. "R.layout.umeng*",
  116. "R.layout.socialize_*",
  117. "R.layout.*messager*",
  118. "R.layout.tb_*",
  119. "R.color.umeng*",
  120. "R.color.tb_*",
  121. "R.style.*UM*",
  122. "R.style.umeng*",
  123. "R.drawable.umeng*",
  124. "R.drawable.tb_*",
  125. "R.drawable.sina*",
  126. "R.drawable.qq_*",
  127. "R.drawable.tb_*",
  128. "R.id.umeng*",
  129. "R.id.*messager*",
  130. "R.id.progress_bar_parent",
  131. "R.id.socialize_*",
  132. "R.id.webView",
  133. //for jpush
  134. "R.drawable.jpush_notification_icon"
  135. ]
  136. compressFilePattern = [
  137. "*.png",
  138. "*.jpg",
  139. "*.jpeg",
  140. "*.gif",
  141. ]
  142. sevenzip {
  143. artifact = 'com.tencent.mm:SevenZip:1.2.13'
  144. //path = "/usr/local/bin/7za"
  145. }
  146. *//**
  147. * 可选: 如果不设置则会默认覆盖assemble输出的apk
  148. **//*
  149. // finalApkBackupPath = "${project.rootDir}/final.apk"
  150. *//**
  151. * 可选: 指定v1签名时生成jar文件的摘要算法
  152. * 默认值为“SHA-1”
  153. **//*
  154. // digestalg = "SHA-256"
  155. }*/