build.gradle 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. apply plugin: 'com.android.application'
  2. //apply plugin: 'AndResGuard'
  3. android {
  4. signingConfigs {
  5. udapda {
  6. keyAlias 'uas_mes_stw_key'
  7. keyPassword 'pdakeystone'
  8. storeFile file('C:\\sigin\\uas_mes_stw_keystone.jks')
  9. storePassword 'pdakeystone'
  10. }
  11. }
  12. compileSdkVersion rootProject.ext.android.compileSdkVersion
  13. buildToolsVersion rootProject.ext.android.buildToolsVersion
  14. defaultConfig {
  15. applicationId "com.uas.uas_mes_stw"
  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 == 'release') {
  42. def releaseInfo = getVersionName()
  43. fileName = "思拓微${releaseInfo}.apk"
  44. } else if (variant.buildType.name == 'debug') {
  45. def debugInfo = getVersionName()
  46. fileName = "UAS_uas_mes_stw_DEBUG_${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. testImplementation 'junit:junit:4.12'
  60. api files('libs/volley.jar')
  61. api files('libs/gson-2.2.4.jar')
  62. api project(':pulltoreflashlibrary')
  63. api project(':progresslitelibrary')
  64. api project(':lib-zxing')
  65. implementation deps.appcompatV7
  66. implementation deps.stetho
  67. implementation deps.fastjson
  68. implementation deps.xUtils
  69. implementation deps.okhttp
  70. implementation project(':bluetooth')
  71. implementation deps.switchView
  72. implementation deps.BaseRecyclerViewAdapterHelper
  73. implementation deps.smartRefreshLayout
  74. implementation deps.smartRefreshHeader
  75. implementation deps.recyclerview
  76. implementation deps.permisson
  77. implementation deps.basePopup
  78. implementation deps.smartTable
  79. implementation 'com.umeng.umsdk:common:9.4.0'// 必选
  80. implementation 'com.umeng.umsdk:asms:1.2.3'// 必选
  81. implementation 'com.umeng.umsdk:apm:1.4.0' // 错误分析升级为独立SDK,看crash数据请一定集成,可选
  82. implementation 'org.greenrobot:eventbus:3.1.1'
  83. implementation 'com.gavin.com.library:stickyDecoration:1.4.11'
  84. implementation 'com.android.support:design:28.0.0'
  85. }
  86. def getVersionName() {
  87. return rootProject.ext.android.versionName
  88. }
  89. /*andResGuard {
  90. // mappingFile = file("./resource_mapping.txt")
  91. mappingFile = null
  92. use7zip = true
  93. useSign = true
  94. // 打开这个开关,会keep住所有资源的原始路径,只混淆资源的名字
  95. keepRoot = false
  96. whiteList = [
  97. // for your icon
  98. "R.mipmap.icon",
  99. // for fabric
  100. "R.string.com.crashlytics.*",
  101. // for google-services
  102. "R.string.google_app_id",
  103. "R.string.gcm_defaultSenderId",
  104. "R.string.default_web_client_id",
  105. "R.string.ga_trackingId",
  106. "R.string.firebase_database_url",
  107. "R.string.google_api_key",
  108. "R.string.google_crash_reporting_api_key",
  109. //for umeng
  110. "R.anim.umeng*",
  111. "R.string.umeng*",
  112. "R.string.UM*",
  113. "R.string.tb_*",
  114. "R.layout.umeng*",
  115. "R.layout.socialize_*",
  116. "R.layout.*messager*",
  117. "R.layout.tb_*",
  118. "R.color.umeng*",
  119. "R.color.tb_*",
  120. "R.style.*UM*",
  121. "R.style.umeng*",
  122. "R.drawable.umeng*",
  123. "R.drawable.tb_*",
  124. "R.drawable.sina*",
  125. "R.drawable.qq_*",
  126. "R.drawable.tb_*",
  127. "R.id.umeng*",
  128. "R.id.*messager*",
  129. "R.id.progress_bar_parent",
  130. "R.id.socialize_*",
  131. "R.id.webView",
  132. //for jpush
  133. "R.drawable.jpush_notification_icon"
  134. ]
  135. compressFilePattern = [
  136. "*.png",
  137. "*.jpg",
  138. "*.jpeg",
  139. "*.gif",
  140. ]
  141. sevenzip {
  142. artifact = 'com.tencent.mm:SevenZip:1.2.13'
  143. //path = "/usr/local/bin/7za"
  144. }
  145. *//**
  146. * 可选: 如果不设置则会默认覆盖assemble输出的apk
  147. **//*
  148. // finalApkBackupPath = "${project.rootDir}/final.apk"
  149. *//**
  150. * 可选: 指定v1签名时生成jar文件的摘要算法
  151. * 默认值为“SHA-1”
  152. **//*
  153. // digestalg = "SHA-256"
  154. }*/