基础组件库
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

361 lines
10 KiB

  1. // 添加插件
  2. def localProperties = new Properties()
  3. def localPropertiesFile = rootProject.file('local.properties')
  4. if (localPropertiesFile.exists()) {
  5. localPropertiesFile.withReader('UTF-8') { reader ->
  6. localProperties.load(reader)
  7. }
  8. }
  9. def flutterRoot = localProperties.getProperty('flutter.sdk')
  10. if (flutterRoot == null) {
  11. throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
  12. }
  13. def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
  14. if (flutterVersionCode == null) {
  15. flutterVersionCode = '1'
  16. }
  17. def flutterVersionName = localProperties.getProperty('flutter.versionName')
  18. if (flutterVersionName == null) {
  19. flutterVersionName = '1.0'
  20. }
  21. // 获取当前时间(年月日)
  22. def releaseTime() {
  23. return new Date().format("YYYYMMdd", TimeZone.getTimeZone("UTC"))
  24. }
  25. apply plugin: 'com.android.application'
  26. apply plugin: 'com.mob.sdk'
  27. apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
  28. android {
  29. compileSdkVersion 28
  30. lintOptions {
  31. disable 'InvalidPackage'
  32. }
  33. // 默认配置
  34. defaultConfig {
  35. applicationId "cn.zhios.zhiying"
  36. minSdkVersion 21
  37. targetSdkVersion 28
  38. versionCode 1
  39. versionName "1.0"
  40. aaptOptions.cruncherEnabled = false
  41. aaptOptions.useNewCruncher = false
  42. multiDexEnabled true
  43. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  44. ndk {
  45. //选择要添加的对应cpu类型的.so库。
  46. abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64', 'arm64-v8a'
  47. }
  48. }
  49. // 签名配置
  50. signingConfigs {
  51. // 智夜生活
  52. zhiying {
  53. storeFile file('zhiying.jks')
  54. storePassword 'zhioscom'
  55. keyAlias 'zysh'
  56. keyPassword 'zhioscom'
  57. v1SigningEnabled true
  58. v2SigningEnabled true
  59. }
  60. }
  61. flavorDimensions "app"
  62. buildTypes {
  63. debug {
  64. buildConfigField "boolean", "LOG_DEBUG", "true"
  65. minifyEnabled false
  66. zipAlignEnabled true
  67. shrinkResources false
  68. signingConfig signingConfigs.zhiying
  69. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  70. }
  71. release {
  72. buildConfigField "boolean", "LOG_DEBUG", "false"
  73. minifyEnabled false
  74. shrinkResources false
  75. zipAlignEnabled true
  76. signingConfig signingConfigs.zhiying
  77. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  78. }
  79. }
  80. dexOptions {
  81. //最大堆内存
  82. javaMaxHeapSize "4g"//4g
  83. //使用增量模式构建
  84. incremental true
  85. //是否支持大工程模式
  86. jumboMode = true
  87. //预编译
  88. preDexLibraries = false
  89. //线程数
  90. threadCount = 8
  91. }
  92. // 应用信息配置
  93. productFlavors {
  94. // 智夜生活
  95. zhiying {
  96. applicationId "cn.zhios.zhiying"
  97. versionCode 26
  98. dimension "app"
  99. versionName '1.2.26'
  100. // 签名信息
  101. signingConfig signingConfigs.zhiying
  102. }
  103. }
  104. // 打包脚本
  105. android.applicationVariants.all { variant ->
  106. if (variant.buildType.name != "debug") {
  107. variant.getPackageApplicationProvider().get().outputDirectory = new File(project.rootDir.absolutePath + "/app/build/outputs/apk")
  108. }
  109. variant.outputs.all { output ->
  110. def outputFile = output.outputFile
  111. if (outputFile != null && outputFile.name.endsWith('.apk')) {
  112. //这里修改apk文件名
  113. def fileName = "${variant.productFlavors[0].name}_${releaseTime()}01_&V${variant.productFlavors[0].versionCode}.apk"
  114. outputFileName = fileName
  115. }
  116. }
  117. }
  118. configurations.all {
  119. resolutionStrategy.eachDependency { DependencyResolveDetails details ->
  120. def requested = details.requested
  121. if (requested.group == 'com.android.support') {
  122. if (!requested.name.startsWith("multidex")) {
  123. details.useVersion '28.0.3'
  124. }
  125. }
  126. resolutionStrategy.force 'com.android.support:support-v4:28.0.0'
  127. }
  128. }
  129. }
  130. flutter {
  131. source '../..'
  132. }
  133. dependencies {
  134. implementation 'androidx.appcompat:appcompat:1.2.0'
  135. implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
  136. testImplementation 'junit:junit:4.12'
  137. androidTestImplementation 'androidx.test:runner:1.1.1'
  138. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  139. //登陆
  140. implementation 'com.ali.auth.sdk:alibabauth_core:2.0.0.11@aar'
  141. implementation 'com.ali.auth.sdk:alibabauth_ui:2.0.0.11@aar'
  142. implementation 'com.ali.auth.sdk:alibabauth_ext:2.0.0.11@aar'
  143. //安全组件
  144. implementation 'com.taobao.android:securityguardaar3:5.4.171@aar'
  145. implementation 'com.taobao.android:securitybodyaar3:5.4.99@aar'
  146. implementation 'com.taobao.android:avmpaar3:5.4.36@aar'
  147. implementation 'com.taobao.android:sgmiddletieraar3:5.4.9@aar'
  148. //Mtop
  149. implementation 'com.taobao.android:mtopsdk_allinone_open:3.1.2.5@jar'
  150. //applink
  151. implementation 'com.alibaba.sdk.android:alibc_link_partner:4.1.15@aar'
  152. //ut
  153. implementation 'com.taobao.android:utdid4all:1.5.2'
  154. implementation 'com.alibaba.mtl:app-monitor-sdk:2.6.4.5_for_bc'
  155. // 电商基础组件
  156. implementation 'com.alibaba.sdk.android:AlibcTradeCommon:4.0.0.16@aar'
  157. implementation 'com.alibaba.sdk.android:AlibcTradeBiz:4.0.0.16@aar'
  158. implementation 'com.alibaba.sdk.android:nb_trade:4.0.0.16@aar'
  159. implementation 'com.alibaba:fastjson:1.2.41@jar'
  160. }
  161. MobSDK {
  162. appKey "30dc33054b635"
  163. appSecret "396e98c293130c9976fb7428b6b434d6"
  164. MobLink {
  165. uriScheme "fnoos://cn.zhios.zhiying"
  166. appLinkHost "bied.t4m.cn"
  167. }
  168. //手机验证登录
  169. SecVerify {}
  170. //短信
  171. SMSSDK {}
  172. ShareSDK {
  173. // platform configuration information
  174. devInfo {
  175. QQ {
  176. appId "1111030588"
  177. appKey "XoHKlrBybXy7ORBt"
  178. shareByAppClient true
  179. bypassApproval false
  180. enable true
  181. }
  182. Wechat {
  183. appId "wx598aaef252cd78e4"
  184. appSecret "d2fc2edf9ece746765b3bfc0bf1b230e"
  185. withShareTicket true
  186. bypassApproval false
  187. enable true
  188. }
  189. WechatMoments {
  190. enable true
  191. }
  192. WechatFavorite {
  193. enable true
  194. }
  195. QZone {
  196. enable true
  197. }
  198. SinaWeibo {
  199. enable true
  200. }
  201. }
  202. }
  203. //配置MobPush
  204. MobPush {
  205. //配置厂商推送(可选配置,不需要厂商推送可不配置,需要哪些厂商推送只需配置哪些厂商配置即可)
  206. devInfo {
  207. //配置小米厂商推送
  208. XIAOMI {
  209. appId "您的小米平台appId"
  210. appKey "您的小米平台appKey"
  211. }
  212. //配置华为厂商推送
  213. HUAWEI {
  214. appId "您的华为平台appId"
  215. }
  216. //配置魅族厂商推送
  217. MEIZU {
  218. appId "您的魅族平台appId"
  219. appKey "您的魅族平台appKey"
  220. }
  221. // //配置FCM厂商推送
  222. // FCM {
  223. // //设置默认推送通知显示图标
  224. // iconRes "@mipmap/default_ic_launcher"
  225. // }
  226. //配置OPPO厂商推送
  227. OPPO {
  228. appKey "您的OPPO平台appKey"
  229. appSecret "您的OPPO平台appSecret"
  230. }
  231. //配置VIVO厂商推送
  232. VIVO {
  233. appId "您的VIVO平台appId"
  234. appKey "您的VIVO平台appKey"
  235. }
  236. }
  237. }
  238. }
  239. // 注册SecVerify的相关信息
  240. //MobSDK {
  241. //// appKey "2ed488d929488"
  242. //// appSecret "53d4a16298d283828f2444cdd6d6548a"
  243. // //手机验证登录
  244. // SecVerify {}
  245. //
  246. // //短信
  247. // SMSSDK {}
  248. //
  249. // //调用MobPush,推送
  250. //// MobPush {
  251. //// //设置角标开关(不需要可不设置)
  252. ////// badge true
  253. //// //集成其他推送通道(可选)
  254. //// devInfo {
  255. //// //华为推送配置信息
  256. //// HUAWEI {
  257. //// appId "${HUAWEI_PUSH_ID}"
  258. //// }
  259. //// //魅族推送配置信息
  260. //// MEIZU {
  261. //// appId "${MEIZHU_PUSH_APPID}"
  262. //// appKey "${MEIZHU_PUSH_APPKEY}"
  263. //// }
  264. //// //小米推送配置信息
  265. //// XIAOMI {
  266. //// appId "${XIAOMI_PUSH_APPID}"
  267. //// appKey "${XIAOMI_PUSH_APPKEY}"
  268. //// }
  269. //// //FCM推送通道配置
  270. ////// FCM {
  271. //// //设置默认推送通知显示图标
  272. ////// iconRes "@mipmap/ic_launcher"
  273. ////// }
  274. //// //OPPO推送配置信息
  275. //// OPPO {
  276. //// appKey "${OPPO_PUSH_APPKEY}"
  277. //// appSecret "${OPPO_PUSH_APPSECRET}"
  278. //// }
  279. //// //VIVO推送配置信息
  280. //// VIVO {
  281. //// appId "${VIVO_PUSH_APPID}"
  282. //// appKey "${VIVO_PUSH_APPKEY}"
  283. //// }
  284. //// }
  285. //// }
  286. //
  287. // //分享
  288. // ShareSDK {
  289. // loopShare true
  290. // devInfo {
  291. // SinaWeibo {
  292. // enable true
  293. // }
  294. // Wechat {
  295. //// appId "${Wechat_appid}"
  296. //// appSecret "${Wechat_appSecret}"
  297. // enable true
  298. // withShareTicket true
  299. // bypassApproval false
  300. // }
  301. // QQ {
  302. // enable true
  303. // }
  304. // WechatMoments {
  305. // enable true
  306. // }
  307. // WechatFavorite {
  308. // enable true
  309. // }
  310. // QZone {
  311. // enable true
  312. // }
  313. // }
  314. // }
  315. //
  316. // //网页打开app,接受邀请码
  317. // MobLink {
  318. //// uriScheme "${uri_Scheme}"
  319. //// appLinkHost "${app_LinkHost}"
  320. // }
  321. //}