基础组件库
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.
 
 
 
 
 

365 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. //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 48
  99. // dimension "app"
  100. // versionName '1.3.6'
  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. }
  164. MobSDK {
  165. appKey "30dc33054b635"
  166. appSecret "396e98c293130c9976fb7428b6b434d6"
  167. MobLink {
  168. uriScheme "fnoos://cn.zhios.zhiying"
  169. appLinkHost "bied.t4m.cn"
  170. }
  171. //手机验证登录
  172. SecVerify {}
  173. //短信
  174. SMSSDK {}
  175. ShareSDK {
  176. // platform configuration information
  177. devInfo {
  178. QQ {
  179. appId "1111030588"
  180. appKey "XoHKlrBybXy7ORBt"
  181. shareByAppClient true
  182. bypassApproval false
  183. enable true
  184. }
  185. Wechat {
  186. appId "wx598aaef252cd78e4"
  187. appSecret "d2fc2edf9ece746765b3bfc0bf1b230e"
  188. shareByAppClient true
  189. withShareTicket true
  190. bypassApproval false
  191. enable true
  192. }
  193. WechatMoments {
  194. enable true
  195. }
  196. WechatFavorite {
  197. enable true
  198. }
  199. QZone {
  200. appId "1111030588"
  201. appKey "XoHKlrBybXy7ORBt"
  202. enable true
  203. }
  204. SinaWeibo {
  205. enable true
  206. }
  207. }
  208. }
  209. //配置MobPush
  210. MobPush {
  211. //配置厂商推送(可选配置,不需要厂商推送可不配置,需要哪些厂商推送只需配置哪些厂商配置即可)
  212. devInfo {
  213. //配置小米厂商推送
  214. XIAOMI {
  215. appId "您的小米平台appId"
  216. appKey "您的小米平台appKey"
  217. }
  218. //配置华为厂商推送
  219. HUAWEI {
  220. appId "您的华为平台appId"
  221. }
  222. //配置魅族厂商推送
  223. MEIZU {
  224. appId "您的魅族平台appId"
  225. appKey "您的魅族平台appKey"
  226. }
  227. // //配置FCM厂商推送
  228. // FCM {
  229. // //设置默认推送通知显示图标
  230. // iconRes "@mipmap/default_ic_launcher"
  231. // }
  232. //配置OPPO厂商推送
  233. OPPO {
  234. appKey "您的OPPO平台appKey"
  235. appSecret "您的OPPO平台appSecret"
  236. }
  237. //配置VIVO厂商推送
  238. VIVO {
  239. appId "您的VIVO平台appId"
  240. appKey "您的VIVO平台appKey"
  241. }
  242. }
  243. }
  244. }
  245. // 注册SecVerify的相关信息
  246. //MobSDK {
  247. //// appKey "2ed488d929488"
  248. //// appSecret "53d4a16298d283828f2444cdd6d6548a"
  249. // //手机验证登录
  250. // SecVerify {}
  251. //
  252. // //短信
  253. // SMSSDK {}
  254. //
  255. // //调用MobPush,推送
  256. //// MobPush {
  257. //// //设置角标开关(不需要可不设置)
  258. ////// badge true
  259. //// //集成其他推送通道(可选)
  260. //// devInfo {
  261. //// //华为推送配置信息
  262. //// HUAWEI {
  263. //// appId "${HUAWEI_PUSH_ID}"
  264. //// }
  265. //// //魅族推送配置信息
  266. //// MEIZU {
  267. //// appId "${MEIZHU_PUSH_APPID}"
  268. //// appKey "${MEIZHU_PUSH_APPKEY}"
  269. //// }
  270. //// //小米推送配置信息
  271. //// XIAOMI {
  272. //// appId "${XIAOMI_PUSH_APPID}"
  273. //// appKey "${XIAOMI_PUSH_APPKEY}"
  274. //// }
  275. //// //FCM推送通道配置
  276. ////// FCM {
  277. //// //设置默认推送通知显示图标
  278. ////// iconRes "@mipmap/ic_launcher"
  279. ////// }
  280. //// //OPPO推送配置信息
  281. //// OPPO {
  282. //// appKey "${OPPO_PUSH_APPKEY}"
  283. //// appSecret "${OPPO_PUSH_APPSECRET}"
  284. //// }
  285. //// //VIVO推送配置信息
  286. //// VIVO {
  287. //// appId "${VIVO_PUSH_APPID}"
  288. //// appKey "${VIVO_PUSH_APPKEY}"
  289. //// }
  290. //// }
  291. //// }
  292. //
  293. // //分享
  294. // ShareSDK {
  295. // loopShare true
  296. // devInfo {
  297. // SinaWeibo {
  298. // enable true
  299. // }
  300. // Wechat {
  301. //// appId "${Wechat_appid}"
  302. //// appSecret "${Wechat_appSecret}"
  303. // enable true
  304. // withShareTicket true
  305. // bypassApproval false
  306. // }
  307. // QQ {
  308. // enable true
  309. // }
  310. // WechatMoments {
  311. // enable true
  312. // }
  313. // WechatFavorite {
  314. // enable true
  315. // }
  316. // QZone {
  317. // enable true
  318. // }
  319. // }
  320. // }
  321. //
  322. // //网页打开app,接受邀请码
  323. // MobLink {
  324. //// uriScheme "${uri_Scheme}"
  325. //// appLinkHost "${app_LinkHost}"
  326. // }
  327. //}