基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

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