DCloud_App_Array
DCloud_App_Array
  • 发布:2020-11-04 20:57
  • 更新:2024-04-25 13:17
  • 阅读:201723

HBuilderX App云端打包 - 安心打包使用指南

分类:HBuilderX

概述

过去,App云端打包时需要将应用代码、打包证书等提交到DCloud云端打包机,在云端打包机的原生开发环境中生成安装包apk/ipa。
DCloud云端服务器虽然不会保存开发者应用代码和证书等信息,但开发者可能还是不放心,或者担心在网络传输过程中可能存在拦截泄漏的风险。

而离线打包,不但不方便,还有2个重要功能无法使用:

  1. 原生混淆,保护js代码(因为秘钥的安全问题,离线打包无法使用)
  2. 插件市场的付费原生插件(因为插件版权问题,离线打包无法使用)

HBuilderX2.9.9版本新增Android平台安心打包功能,不再提交应用代码及打包证书到云端服务器,同时也减轻云端打包机压力,缩短高峰期云端打包等待时间。
HBuilderX3.0.7版本新增iOS平台支持安心打包功能(仅支持MacOS)

安心打包原理

  • 首次打包
    1. HBuilderX会提交App的模块配置信息到云端,在云端打包机生成原生代码包(不包含应用代码、证书信息)
    2. HBuilderX下载原生代码包,在本地电脑上将应用代码添加到原生代码包中,生成未签名安装包
    3. 缓存原生代码包,用于下次打包复用
    4. 在本地电脑上使用打包证书对未签名安装包进行签名操作,生成安装包
  • 非首次打包
    1. HBuilderX判断缓存的原生代码包是否可以复用,如果没有修改App模块配置或影响原生代码包配置操作继续下一步,否则转首次打包流程,以下情况也会触发首次打包流程:
      • 使用了uni原生插件,本地无法判断原生插件是否更新了,因此项目中只要包含uni原生插件都会走首次打包流程
      • HBuilderX更新,本地缓存原生代码包需要更新,需要走首次打包流程生成新版本原生代码包
    2. 将修改后的应用代码添加到原生代码包中,生成未签名安装包
    3. 在本地电脑上使用打包证书对未签名安装包进行签名操作,生成安装包

因为大多数打包,并不改动原生部分(主要是manifest.json),只修改前端代码。此时将无需从云端打包机下载原生包,打包速度会非常快。

安心打包优势

  • 更安全:打包时不提交应用代码、证书等信息
  • 更快速:非首次打包时不用提交云端打包机排队等待,本地直接出包
  • 省流量:减少了打包时提交打包资源,非首次打包时不用下载原生代码包
  • 更便宜:除非使用了体积很大的本地原生插件,否则将难以突破40M的免费打包体积阀值。开发者和DCloud的成本双下降

使用安心打包

新版本HBuilderX云端打包时无需额外操作,默认会勾选“安心打包”,如下图所示:

如果没有安装安心打包插件,会弹出以下提示框,点击“安装”继续

插件安装完成后需重新点击“打包”按钮提交打包

打包完成后自动保存到项目的"unpackage/release/apk/"目录

如果清空了这个目录,那么下次打包将执行首次打包逻辑。

注意事项

  • Windows环境:仅Android平台支持安心打包,iOS暂不支持;MacOSX环境:Android和ios都支持安心打包。
  • 自定义调试基座不支持安心打包
  • 使用DCloud老版证书不支持安心打包
  • 使用原生混淆时,配置的待加密js文件需要提交到云端打包机(打包完成后自动清除这些js)
  • 安心打包并非纯离线打包,虽然证书和前端代码不再提交云端打包机,但项目的manifest中的模块配置、本地原生插件、原生混淆配置的前端文件,仍需提交才能出包
  • iOS平台安心打包无法兼容swift,如果uni原生插件使用swift开发,提交appstore提示“ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.”错误时,请改用传统打包

FAQ

  • 安心打包是否有免费打包次数限制?
    打包次数限制是为了避免部分开发者过多占用云端打包资源而增加的限流措施,在使用安心打包时,由非首次打包机制生成的安装包由于不占用云端打包资源,所以不会占用云端免费打包次数,也可以理解为安心打包非首次打包无打包次数限制。

Android 安心打包问题汇总

Q1: Windows:控制台提示打包成功,相应目录下没有apk文件

问题: 某些用户反馈,windows电脑,控制台提示Android安心打包成功,进入相应目录(unpackage/release/apk),目录下找不到apk文件
原因 :unpackage/release/apk目录,没有写入权限,移动apk文件失败了。

解决方法:

  1. 赋予unpackage/release/apk目录写入权限
  2. 重启电脑试试

Q2: fakeLogOpen(/dev/log_crash) failed

某些情况下,首次提交安心打包,您可能会遇到下列错误:

[Error] W: fakeLogOpen(/dev/log_crash) failed  
[Error] W: fakeLogOpen(/dev/log_stats) failed  
[Error] W: fakeLogOpen(/dev/log_stats) failed  
[Info] I: Copying libs... (/lib)  
[Info] I: Building apk file...  
[Info] I: Copying unknown files/dir...  
[Info] I: Built apk...  
[Error] Apk tool compile package to apk failed  
[Info] 制作结果:Failed. Reason:

解决方法: 重新提交安心打包

Q3: 启动图.9.png格式问题

错误日志中,出现如下日志:

[Error] W: ERROR: 9-patch image C:\xxxxx\res\drawable-hdpi\splash.9.png malformed.  
[Error] W: No marked region found along edge.  
[Error] W: Found along top edge.

原因: 启动图xxx.9.png不是有效9.png图片,格式错误导致。
解决方法: 重新生成有效的9.png图片

备注: 部分用户可能会提问,同样.9.png项目,为什么传统打包成功,安心打包失败呢?因为:安心打包校验机制更为严格。
文档: .9.png图片相关文档

Q4: Error occurred during initialization of VM

错误日志中,出现如下日志:

[Info] Error occurred during initialization of VM  
[Info] Could not reserve enough space for 1048576KB object heap  
[Error] 制作结果:Failed.    Reason: 

解决方法:

  1. 找到安心打包插件(app-safe-pack)目录下app-safe-pack.ini文件
  2. 将文件内容里-Xmx1024M修改为-Xmx512M
  3. 重新提交打包

备注: HBuilderX 3.1.10及以上版本生效

ios 安心打包问题汇总

Q1: 打包失败,签名失败errSecInternalComponent错误

错误日志中,出现如下日志:

[Error] HBuilder.xcarchive/Payload/HBuilder.app: replacing existing signature  
[Error] Warning: unable to build chain to self-signed root for signer  "xxxxxxxxxx“”  
[Error] HBuilder.xcarchive/Payload/HBuilder.app: errSecInternalComponent

原因: 可能是用户手动点击安装了证书导致打包签名失败。
解决方法: 打开钥匙串访问删除相关用户手动安装的证书后重新打包(下图仅供参考,需开发者判断哪些证书是手动安装的证书)。

安心打包问题反馈

如果您遇到安心打包问题,且无法解决,请加QQ群182151114。
进群需要提供操作系统HBuilderX版本号信息,提问请提交错误日志截图
本群仅限反馈安心打包问题,请勿发布无关信息。

31 关注 分享
DCloud_heavensoft 9***@qq.com DCloud_uniCloud_JSON 4***@qq.com swpupeng 老哥教教我 BaseCloud 九涯 大叔刘 typer sonicsunsky 海中月是天上月 梦尋Junjie 梁飞鸿 skysowe 小菜啊 x***@163.com 3***@qq.com 秋凡 1***@qq.com 我这边 a***@163.com 2***@qq.com 1***@qq.com 2***@qq.com x***@126.com 银霖 Edmin 1***@qq.com 3***@qq.com 8***@qq.com

要回复文章请先登录注册

DCloud_HB_WDL

DCloud_HB_WDL

回复 小熊毛炸了 :
项目带了推送相关的原生插件?什么插件?
2021-01-29 15:02
GBFLuckily2020

GBFLuckily2020

macOS Big Sur(版本11.1) 插件[app-safe-pack]正在下载中... 这种状态已经持续3个多小时了,请问该怎么解决
2021-01-29 13:48
小熊毛炸了

小熊毛炸了

[Info] 正在制作apk安装包...

[Info] I: Using Apktool 2.4.1 on __UNI__8ECECAB_cm.apk
[Info] I: Loading resource table...
[Info] I: Decoding AndroidManifest.xml with resources...
[Info] I: Loading resource table from file: C:\Users\wilson\AppData\Local\apktool\framework\1.apk
[Info] I: Regular manifest package...
[Info] I: Decoding file-resources...
[Info] I: Decoding values */* XMLs...
[Info] I: Copying raw classes.dex file...
[Info] I: Copying raw classes2.dex file...
[Info] I: Copying raw assets/39285EFA.dex file...
[Info] I: Copying assets and libs...
[Info] I: Copying unknown files...
[Info] I: Copying original files...
[Info] begin replace files to apk...
[Info] begin copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-hdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-hdpi/icon.png]...
[Info] copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-hdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-hdpi/icon.png] success.
[Info] begin copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-xhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xhdpi/icon.png]...
[Info] copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-xhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xhdpi/icon.png] success.
[Info] begin copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-xxhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xxhdpi/icon.png]...
[Info] copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-xxhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xxhdpi/icon.png] success.
[Info] begin copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-xxxhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xxxhdpi/icon.png]...
[Info] copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/icon-android-xxxhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xxxhdpi/icon.png] success.
[Info] begin copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/splash-android-hdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-hdpi/splash.png]...
[Info] copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/splash-android-hdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-hdpi/splash.png] success.
[Info] begin copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/splash-android-xhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xhdpi/splash.png]...
[Info] copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/splash-android-xhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xhdpi/splash.png] success.
[Info] begin copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/splash-android-xxhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xxhdpi/splash.png]...
[Info] copy file[C:/Users/wilson/Desktop/yuanbao_store1/unpackage/cache/wgt/__UNI__8ECECAB/.manifest/splash-android-xxhdpi.png] to [C:/Users/wilson/AppData/Local/HBuilder X/__UNI__8ECECAB/packge_cache/__UNI__8ECECAB_cm/res/drawable-xxhdpi/splash.png] success.
[Info] begin update files to apk...
[Info] I: Using Apktool 2.4.1
[Info] I: Copying C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm classes.dex file...
[Info] I: Copying C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm classes2.dex file...
[Info] I: Checking whether resources has changed...
[Info] I: Building resources...
[Error] W: C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\res\layout\push_notification.xml:9: error: Error: Resource is not public. (at 'style' with value '@android:style/TextAppearance.SlidingTabNormal').
[Error] W:
[Error] W: C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\res\layout\push_notification.xml:10: error: Error: Resource is not public. (at 'style' with value '@android:style/TextAppearance.StatusBar').
[Error] W:
[Error] W: C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\res\layout\push_notification.xml:14: error: Error: Resource is not public. (at 'style' with value '@android:style/TextAppearance.SlidingTabNormal').
[Error] W:
[Error] W: C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\res\layout\push_notification.xml:15: error: Error: Resource is not public. (at 'style' with value '@android:style/TextAppearance.SlidingTabNormal').
[Error] W:
[Error] W: C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\res\layout\push_notification.xml:21: error: Error: Resource is not public. (at 'style' with value '@android:style/TextAppearance.StatusBar').
[Error] W:
[Error] W: C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\res\layout\push_notification.xml:24: error: Error: Resource is not public. (at 'style' with value '@android:style/TextAppearance.SlidingTabNormal').
[Error] W:
[Error] brut.androlib.AndrolibException: brut.common.BrutException: could not exec (exit code = 1): [C:\Users\wilson\AppData\Local\Temp\brut_util_Jar_211903741541072256.tmp, p, --forced-package-id, 127, --min-sdk-version, 20, --target-sdk-version, 29, --version-code, 1057, --version-name, 1.5.7, --no-version-vectors, -F, C:\Users\wilson\AppData\Local\Temp\APKTOOL6238822759710520703.tmp, -e, C:\Users\wilson\AppData\Local\Temp\APKTOOL6974879609504321293.tmp, -0, arsc, -I, C:\Users\wilson\AppData\Local\apktool\framework\1.apk, -S, C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\res, -M, C:\Users\wilson\AppData\Local\HBuilder X\__UNI__8ECECAB\packge_cache\__UNI__8ECECAB_cm\AndroidManifest.xml]
[Error] Apk tool compile package to apk failed
[Info] 制作结果:Failed. Reason:
2021-01-27 14:29
7***@qq.com

7***@qq.com

版本---
操作系统 macos: 11.1
HBUILDERX版本: 3.0.7.20210123

安卓、苹果安心打包都报错
苹果报错如下:
[Info] begin copyFile files to ipa...
[Info] begin replace files to ipa...
[Info] begin update mobileprovision to ipa...
[Info] begin outPut t_entitlements_full plist file...
[Info] begin outPut outPutEntitlements plist file...
[Info] begin verifyPlistFiles
[Info] begin update files to ipa...
[Info] begin createKeychain...
[Info] begin unlockKeychain...
[Info] begin setListKeychains...
[Info] begin importAppleCerts...
[Info] 1 certificate imported.
[Info] 1 certificate imported.
[Info] 1 certificate imported.
[Info] begin importSecurity...
[Error] bash: ?759: Read-only file system
[Error] importSecurity failed
[Info] Package make result:Failed. Reason:



安卓报错如下:
[Info] 正在制作apk安装包...

[Info] I: Using Apktool 2.4.1 on __UNI__3C1B11E_cm.apk
[Info] I: Loading resource table...
[Info] I: Decoding AndroidManifest.xml with resources...
[Info] I: Loading resource table from file: /Users/tiger/Library/apktool/framework/1.apk
[Info] I: Regular manifest package...
[Info] I: Decoding file-resources...
[Info] I: Decoding values */* XMLs...
[Info] I: Copying raw classes.dex file...
[Info] I: Copying raw classes2.dex file...
[Info] I: Copying raw assets/39285EFA.dex file...
[Info] I: Copying assets and libs...
[Info] I: Copying unknown files...
[Info] I: Copying original files...
[Info] begin replace files to apk...
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-hdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-hdpi/icon.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-hdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-hdpi/icon.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xhdpi/icon.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xhdpi/icon.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxhdpi/icon.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxhdpi/icon.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxxhdpi/icon.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxxhdpi/icon.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/splash-android-hdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-hdpi/splash.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/splash-android-hdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-hdpi/splash.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/splash-android-xhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xhdpi/splash.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/splash-android-xhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xhdpi/splash.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/splash-android-xxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxhdpi/splash.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/splash-android-xxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxhdpi/splash.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-hdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-hdpi/push.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-hdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-hdpi/push.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xhdpi/push.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xhdpi/push.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxhdpi/push.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxhdpi/push.png] success.
[Info] begin copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxxhdpi/push.png]...
[Info] copy file[/Users/tiger/Documents/HBuilderProjects/EplusOA-app/unpackage/cache/wgt/__UNI__3C1B11E/.manifest/icon-android-xxxhdpi.png] to [/Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/drawable-xxxhdpi/push.png] success.
[Info] begin update files to apk...
[Info] I: Using Apktool 2.4.1
[Info] I: Copying /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm classes.dex file...
[Info] I: Copying /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm classes2.dex file...
[Info] I: Checking whether resources has changed...
[Info] I: Building resources...
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:96: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Animation.RecentApplications'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:97: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Animation.VolumePanel'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:98: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Animation.PopupWindow.ActionMode'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:99: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Animation.PopupWindow'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:100: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Animation.Dream'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:101: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.StatusBar.EventContent.Time'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:102: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.StatusBar.EventContent.Info'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:103: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.StatusBar.EventContent.Line2'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:104: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.StatusBar.Ticker'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:105: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.StatusBar.EventContent.Emphasis'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:106: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Small.CalendarViewWeekDayView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:107: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Suggestion'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:108: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.EasyCorrectSuggestion'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:109: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Preference'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:110: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/PreferenceFragment'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:111: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.MisspelledSuggestion'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:112: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.AutoCorrectionSuggestion'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:113: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.GestureOverlayView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:119: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.TextView.ListSeparator'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:120: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.TextView.ListSeparator.White'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:121: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.ExpandableListView.White'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:122: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.NumberPicker'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:123: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.TimePicker'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:130: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.HorizontalScrollView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v23/styles.xml:3: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadge'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:144: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadgeSmall'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:145: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadge.WindowSmall'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:146: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadge.WindowMedium'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:147: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadge.WindowLarge'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:148: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadgeSmall.WindowSmall'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:149: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadgeSmall.WindowLarge'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:150: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Theme.Dialog.AppError'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v24/styles.xml:3: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Preference.DeviceDefault.CheckBoxPreference'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v24/styles.xml:4: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Preference.DeviceDefault.Category'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v23/styles.xml:4: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.DeviceDefault.Light.Medium'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:168: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Preference'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:169: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/PreferenceFragment'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:170: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Animation.PopupWindow'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:171: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Preference.SwitchPreference'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:175: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadgeSmall'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:176: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.QuickContactBadge.WindowMedium'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:313: error: Error: No resource found that matches the given name: attr 'android:allowScaling'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:316: error: Error: No resource found that matches the given name: attr 'android:alwaysTrackFinger'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:315: error: Error: No resource found that matches the given name: attr 'android:feedbackCount'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:311: error: Error: No resource found that matches the given name: attr 'android:firstItemOffset'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:310: error: Error: No resource found that matches the given name: attr 'android:glowRadius'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:312: error: Error: No resource found that matches the given name: attr 'android:magneticTargets'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:314: error: Error: No resource found that matches the given name: attr 'android:snapMargin'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:349: error: Error: No resource found that matches the given name: attr 'android:allowScaling'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:352: error: Error: No resource found that matches the given name: attr 'android:alwaysTrackFinger'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:351: error: Error: No resource found that matches the given name: attr 'android:feedbackCount'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:347: error: Error: No resource found that matches the given name: attr 'android:firstItemOffset'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:346: error: Error: No resource found that matches the given name: attr 'android:glowRadius'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:348: error: Error: No resource found that matches the given name: attr 'android:magneticTargets'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:350: error: Error: No resource found that matches the given name: attr 'android:snapMargin'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:383: error: Error: No resource found that matches the given name: attr 'android:externalRouteEnabledDrawable'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:741: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Widget.PopupMenu'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:742: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Widget.PopupMenu.Large'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:743: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Widget.PopupMenu.Small'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:744: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Widget.DropDownHint'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:747: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Widget.ActionMode.Title'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:763: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.WindowTitle'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:766: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.DialogWindowTitle'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:767: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.CalendarViewWeekDayView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:768: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Holo'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v23/styles.xml:7: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Holo'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v23/styles.xml:8: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.DeviceDefault.Light.Large.Inverse'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:779: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.TextView.ListSeparator'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:780: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.TextSuggestionsPopupWindow'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:782: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Gallery'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:783: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.GestureOverlayView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:806: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.ImageWell'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:807: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.ListView.White'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:810: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Spinner.DropDown'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:821: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.QuickContactBadgeSmall.WindowLarge'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:822: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.QuickContactBadgeSmall.WindowLarge'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:823: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.CompoundButton.Switch'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:824: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.DeviceDefault.ProgressBar.Small.Inverse'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:831: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Spinner.DropDown.ActionBar'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:832: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.TabText'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:833: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.KeyboardView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:835: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.QuickContactBadge.WindowMedium'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:840: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.QuickContactBadgeSmall.WindowMedium'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:841: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.QuickContactBadgeSmall.WindowLarge'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:842: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.Button.Borderless'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v23/styles.xml:9: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.TextView.ListSeparator'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v23/styles.xml:10: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.TextSelectHandle'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:877: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.ExpandableListView.White'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:881: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.NumberPicker'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-ldltr/styles.xml:3: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.TimePicker'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v23/styles.xml:11: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.TimePicker'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:885: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.ListView.White'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:887: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.Holo.Light.Spinner.DropDown.ActionBar'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:957: error: Error: No resource found that matches the given name: attr 'android:allowScaling'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:960: error: Error: No resource found that matches the given name: attr 'android:alwaysTrackFinger'.
[Error] W:
[Error] brut.androlib.AndrolibException: brut.common.BrutException: could not exec (exit code = 1): [/var/folders/12/06zmhyjs7_j4fxhk9s_psygm0000gn/T/brut_util_Jar_8936662381632600366.tmp, p, --forced-package-id, 127, --min-sdk-version, 22, --target-sdk-version, 26, --version-code, 101, --version-name, 1.0.0, --no-version-vectors, -F, /var/folders/12/06zmhyjs7_j4fxhk9s_psygm0000gn/T/APKTOOL6928653303916696051.tmp, -e, /var/folders/12/06zmhyjs7_j4fxhk9s_psygm0000gn/T/APKTOOL4785509478122461168.tmp, -0, arsc, -I, /Users/tiger/Library/apktool/framework/1.apk, -S, /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res, -M, /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/AndroidManifest.xml]
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:959: error: Error: No resource found that matches the given name: attr 'android:feedbackCount'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:955: error: Error: No resource found that matches the given name: attr 'android:firstItemOffset'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:954: error: Error: No resource found that matches the given name: attr 'android:glowRadius'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:956: error: Error: No resource found that matches the given name: attr 'android:magneticTargets'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:958: error: Error: No resource found that matches the given name: attr 'android:snapMargin'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1063: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Preference.Holo.DialogPreference.YesNoPreference'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1071: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Widget.Switch'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v25/styles.xml:5: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Preference.Holo.DialogPreference.YesNoPreference'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values-v25/styles.xml:6: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.Holo.Light.Widget.Switch'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1148: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.GestureOverlayView.White'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1149: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.ProgressBar.Small.Title'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1158: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.RatingBar.Small'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1162: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.CheckedTextView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1197: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.GestureOverlayView.White'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1198: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.ProgressBar.Small.Title'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1207: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.RatingBar.Small'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1211: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/Widget.CheckedTextView'.
[Error] W:
[Error] W: /Users/tiger/Library/Application Support/HBuilder X/__UNI__3C1B11E/packge_cache/__UNI__3C1B11E_cm/res/values/styles.xml:1423: error: Error: No resource found that matches the given name: attr 'android:mountPoint'.
[Error] W:
[Error] Apk tool compile package to apk failed
[Info] 制作结果:Failed. Reason:
2021-01-27 09:42
y***@echase.cn

y***@echase.cn

app-safe-pack插件安装不了 打不了包什么原因
2021-01-26 15:26
d***@foxmail.com

d***@foxmail.com

回复 d***@foxmail.com :
/#/后面内容还要校验本地文件吗? 前面匹配了就应该可以了吧
2021-01-25 11:11
d***@foxmail.com

d***@foxmail.com

版本更新后对入口地址做了校验吗,带/#/ 的这种入口地址不可以吗?我记得之前还可以的,因为vue打包出来的页面我们不一定会把app的入口放在index的根路由下面。 不知道这里是否可以做调整?
2021-01-25 11:09
DCloud_HB_WDL

DCloud_HB_WDL

回复 第九代开发传人 :
提供下运行日志。你光说问题,不提供相关信息,如何解决?
2021-01-25 10:59
第九代开发传人

第九代开发传人

安心打包根本一直不能用,一直提示“本地安装包生成失败,请重试或者切换到非安心打包模式进行打包”
2021-01-25 09:34
第九代开发传人

第九代开发传人

评论不了吗?
2021-01-25 09:34