
【分享】renderjs知识分享
DCLOUD社区关于renderjs的资料相当少。这里分享一些实测,同时也方便自己日后查看。
实测后发现,renderjs其实还是蛮简单的,难怪官方给的资料那么少。
<template>
<view class="content">
<view class="target"
:prop="theReactivityStateWhatRenderjsWantToListen"
:change:prop="renderjsModuleName.methodName"
@click="normalMethod"
@click="renderjsModuleName.renderjsMethod">
{{otherReactivityState}}
<!-- :prop 将逻辑层的某个响应式状态绑定到:prop中,这样就可以在renderjs层监听该响应式状态了-->
<!-- :change:prop 指明当renderjs层监听到:prop绑定的逻辑层响应式状态变更时,调用renderjs层的renderjsModuleName.methodName方法来处理它-->
<!--第一个click,绑定逻辑层的normalMethod方法;第二个click,绑定renderjs层的renderjsMethod方法。当.target组件被click时,调用其绑定的normalMethod方法或renderjsMethod方法来处理它-->
<!--注意:两个click不能同时写,而只能二选一,否则会报错!-->
<!--在同一个click中可以同时绑定多个normalMethod,但不能同时绑定多个renderjsMethod,更不能同时混合绑定normalMethod和renderjsMethod-->
<!--例如@click="normalMethod1(), normalMethod2()" 是合法的;但@click="renderjsMethod1(), renderjsMethod2()"是不合法的,此时仅renderjsMethod2()有效-->
</view>
</view>
</template>
<script>
export default {
data() {
theReactivityStateWhatRenderjsWantToListen: ...,
otherReactivityState: ...
},
medthod: {
normalMethod(event) {
...
}
}
}
</script>
<script module="renderjsModuleName" lang=renderjs>
export default {
mounted() {
//renderjs模块可以使用vue的除beforeDestroy、destroyed、beforeUnmount、unmounted之外的生命周期钩子。
},
methods: {
methodName(newValue, oldValue, ownerInstance, instance) {
//当逻辑层的theReactivityStateWhatRenderjsWantToListen被更新时,也即<template>中被 :prop绑定的逻辑层响应数据被更新时,
//此方法,也即<template>中被“:change:prop”绑定的renderjs层的方法,将被调用。
//注意参数的顺序
1. newValue:更新后的theReactivityStateWhatRenderjsWantToListen的值
2. oldValue:更新前的theReactivityStateWhatRenderjsWantToListen的值
3. ownerInstance:Instance的owner,触发本方法的组件所在的组件的 ComponentDescriptor 实例
4. Instance:触发本方法的组件的 ComponentDescriptor 实例
5. 如果没猜错,ownerInstance和Instance应该分别是模板中”.content“组件和”.target"组件的ComponentDescriptor实例
},
renderjsMethod(event, ownerInstance) {
....
//renderjs层可以通过ownerInstance.callMethod方法调用逻辑层的方法,并在调用时向被调用的方法传入参数(parameter)
ownerInstance.callMethod('normalMethod', parameter)
}
}
}
</script>
在上述模板中,
- ”:prop“用于绑定逻辑层中的希望被renderjs模块侦听的响应式数据,例如上例中的theReactivityStateWhatRenderjsWantToListen。
- ”:change:prop“用于指定当 ”:prop“绑定的响应式数据更新时renderjs模块需要调用的方法,例如上例中的renderjsModuleName.methodName方法。
- 通过更新逻辑层的theReactivityStateWhatRenderjsWantToListen,就可以自动调用renderjs层的renderjsModuleName.methodName,这是逻辑层(<script>中的代码,单独占用一个线程)调用视图层(或称renderjs层。<template>模板和renderjs代码,它们共用另一个线程)的机制。
- renderjs层可以通过ownerInstance.callMethod方法调用逻辑层的方法,并在调用时向被调用的方法传入参数(parameter),这是视图层(或称渲染层、renderjs层。<template>模板和renderjs代码,它们共用一个线程)调用逻辑层(<script>中的代码,单独占用另一个线程)的机制。
- 在@click这样的事件中,特别是在touchmove这样的频繁视图(跟手操作)事件中,可采用绑定“renderjs模块名.renderjs方法名”的方法,使renderjs层的事件处理方法响应事件,从而减少视图层和逻辑层间的相互通讯,提高性能。
一个很重要的问题:得到ComponentDescriptor后,可以做什么?
下面这个页面告诉你一切:WXS响应事件
ComponentDescriptor本是微信特有的;但renderjs也实现了这个接口,所以该接口renderjs也能用。
DCLOUD社区关于renderjs的资料相当少。这里分享一些实测,同时也方便自己日后查看。
实测后发现,renderjs其实还是蛮简单的,难怪官方给的资料那么少。
<template>
<view class="content">
<view class="target"
:prop="theReactivityStateWhatRenderjsWantToListen"
:change:prop="renderjsModuleName.methodName"
@click="normalMethod"
@click="renderjsModuleName.renderjsMethod">
{{otherReactivityState}}
<!-- :prop 将逻辑层的某个响应式状态绑定到:prop中,这样就可以在renderjs层监听该响应式状态了-->
<!-- :change:prop 指明当renderjs层监听到:prop绑定的逻辑层响应式状态变更时,调用renderjs层的renderjsModuleName.methodName方法来处理它-->
<!--第一个click,绑定逻辑层的normalMethod方法;第二个click,绑定renderjs层的renderjsMethod方法。当.target组件被click时,调用其绑定的normalMethod方法或renderjsMethod方法来处理它-->
<!--注意:两个click不能同时写,而只能二选一,否则会报错!-->
<!--在同一个click中可以同时绑定多个normalMethod,但不能同时绑定多个renderjsMethod,更不能同时混合绑定normalMethod和renderjsMethod-->
<!--例如@click="normalMethod1(), normalMethod2()" 是合法的;但@click="renderjsMethod1(), renderjsMethod2()"是不合法的,此时仅renderjsMethod2()有效-->
</view>
</view>
</template>
<script>
export default {
data() {
theReactivityStateWhatRenderjsWantToListen: ...,
otherReactivityState: ...
},
medthod: {
normalMethod(event) {
...
}
}
}
</script>
<script module="renderjsModuleName" lang=renderjs>
export default {
mounted() {
//renderjs模块可以使用vue的除beforeDestroy、destroyed、beforeUnmount、unmounted之外的生命周期钩子。
},
methods: {
methodName(newValue, oldValue, ownerInstance, instance) {
//当逻辑层的theReactivityStateWhatRenderjsWantToListen被更新时,也即<template>中被 :prop绑定的逻辑层响应数据被更新时,
//此方法,也即<template>中被“:change:prop”绑定的renderjs层的方法,将被调用。
//注意参数的顺序
1. newValue:更新后的theReactivityStateWhatRenderjsWantToListen的值
2. oldValue:更新前的theReactivityStateWhatRenderjsWantToListen的值
3. ownerInstance:Instance的owner,触发本方法的组件所在的组件的 ComponentDescriptor 实例
4. Instance:触发本方法的组件的 ComponentDescriptor 实例
5. 如果没猜错,ownerInstance和Instance应该分别是模板中”.content“组件和”.target"组件的ComponentDescriptor实例
},
renderjsMethod(event, ownerInstance) {
....
//renderjs层可以通过ownerInstance.callMethod方法调用逻辑层的方法,并在调用时向被调用的方法传入参数(parameter)
ownerInstance.callMethod('normalMethod', parameter)
}
}
}
</script>
在上述模板中,
- ”:prop“用于绑定逻辑层中的希望被renderjs模块侦听的响应式数据,例如上例中的theReactivityStateWhatRenderjsWantToListen。
- ”:change:prop“用于指定当 ”:prop“绑定的响应式数据更新时renderjs模块需要调用的方法,例如上例中的renderjsModuleName.methodName方法。
- 通过更新逻辑层的theReactivityStateWhatRenderjsWantToListen,就可以自动调用renderjs层的renderjsModuleName.methodName,这是逻辑层(<script>中的代码,单独占用一个线程)调用视图层(或称renderjs层。<template>模板和renderjs代码,它们共用另一个线程)的机制。
- renderjs层可以通过ownerInstance.callMethod方法调用逻辑层的方法,并在调用时向被调用的方法传入参数(parameter),这是视图层(或称渲染层、renderjs层。<template>模板和renderjs代码,它们共用一个线程)调用逻辑层(<script>中的代码,单独占用另一个线程)的机制。
- 在@click这样的事件中,特别是在touchmove这样的频繁视图(跟手操作)事件中,可采用绑定“renderjs模块名.renderjs方法名”的方法,使renderjs层的事件处理方法响应事件,从而减少视图层和逻辑层间的相互通讯,提高性能。
一个很重要的问题:得到ComponentDescriptor后,可以做什么?
下面这个页面告诉你一切:WXS响应事件
ComponentDescriptor本是微信特有的;但renderjs也实现了这个接口,所以该接口renderjs也能用。

webview解决隐藏title后状态栏遮挡和点击返回键回退页面的问题
// #ifdef APP-PLUS
setWebView();
// #endif
let wv;
function setWebView() {
const instance = getCurrentInstance().proxy.$scope;
const currentWebview = instance.$getAppWebview(); //获取当前web-view
setTimeout(function () {
wv = currentWebview.children()[0];
setWebViewHeight();
setWebViewBack();
}, 500);
}
function setWebViewHeight() {
const statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
const screenHeight = uni.getSystemInfoSync().screenHeight;
wv.setStyle({
top: statusBarHeight,
height: screenHeight - statusBarHeight
});
}
let canBack = false; // 判断是否还能继续回退
// 设置webview的返回逻辑
function setWebViewBack() {
wv.addEventListener('progressChanged', function (e) {
wv.canBack(function (e) {
canBack = e.canBack;
});
});
}
onBackPress((e) => {
// #ifdef APP-PLUS
if (canBack) {
wv.back(); // 返回上一页
} else {
plus.runtime.quit(); // 直接退出应用
}
return true;
// #endif
});
// #ifdef APP-PLUS
setWebView();
// #endif
let wv;
function setWebView() {
const instance = getCurrentInstance().proxy.$scope;
const currentWebview = instance.$getAppWebview(); //获取当前web-view
setTimeout(function () {
wv = currentWebview.children()[0];
setWebViewHeight();
setWebViewBack();
}, 500);
}
function setWebViewHeight() {
const statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
const screenHeight = uni.getSystemInfoSync().screenHeight;
wv.setStyle({
top: statusBarHeight,
height: screenHeight - statusBarHeight
});
}
let canBack = false; // 判断是否还能继续回退
// 设置webview的返回逻辑
function setWebViewBack() {
wv.addEventListener('progressChanged', function (e) {
wv.canBack(function (e) {
canBack = e.canBack;
});
});
}
onBackPress((e) => {
// #ifdef APP-PLUS
if (canBack) {
wv.back(); // 返回上一页
} else {
plus.runtime.quit(); // 直接退出应用
}
return true;
// #endif
});
收起阅读 »

uniapp 开发微信小程序 使用 workers
需要在pages.json里面添加"workers": "workers",
manifest.json里面添加 "workers": "workers",
var worker = wx.createWorker('workers/wk-1.js')
worker.onMessage((res) => {
console.log("主线程接收到的",res)
})
worker.postMessage({
msg: 'hello from main'
})
worker.onMessage(function (res) {
console.log("worker 接收到 ",res)
worker.postMessage({
msg: '返回 hello worker'
})
})
需要在pages.json里面添加"workers": "workers",
manifest.json里面添加 "workers": "workers",
var worker = wx.createWorker('workers/wk-1.js')
worker.onMessage((res) => {
console.log("主线程接收到的",res)
})
worker.postMessage({
msg: 'hello from main'
})
worker.onMessage(function (res) {
console.log("worker 接收到 ",res)
worker.postMessage({
msg: '返回 hello worker'
})
})
收起阅读 »

关于vue-cli构建vue3的项目使用jsx的问题
1.如果直接使用jsx,报错就需要安装依赖
- 必须要安装@vue/cli-plugin-babel,否则babel.config关于jsx的配置无效
- 执行npm install babel-plugin-syntax-jsx babel-plugin-transform-vue-jsx babel-helper-vue-jsx-merge-props babel-preset-env --save-dev
4.babel.config.js中
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
],
}
1.如果直接使用jsx,报错就需要安装依赖
- 必须要安装@vue/cli-plugin-babel,否则babel.config关于jsx的配置无效
- 执行npm install babel-plugin-syntax-jsx babel-plugin-transform-vue-jsx babel-helper-vue-jsx-merge-props babel-preset-env --save-dev
4.babel.config.js中
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
],
}
收起阅读 »
UNI解决问题的速度越来越慢了,每次更新都是一大堆问题
感觉UNI没什么激情,一个问题十几年都没有解决。每次更新HBuilderX,都是一大堆问题,感觉就是为了应付进度匆忙的更新。
还好公司上一年就停到APP了,不然现在天天都在踩坑。
虽然APP没了,现在维护小程序也是一大堆问题。
Vue3版本的问题比Vue2还多,有时候要靠玄学解决。v-if和自定义组件,组合在一起,有时候移动代码的位置才能不报错
不知道是不是编译有问题
现在论坛也是乌烟瘴气,特别是有一群傻狗,为了热度接外包,天天在帖子下面刷热度。
感觉UNI没什么激情,一个问题十几年都没有解决。每次更新HBuilderX,都是一大堆问题,感觉就是为了应付进度匆忙的更新。
还好公司上一年就停到APP了,不然现在天天都在踩坑。
虽然APP没了,现在维护小程序也是一大堆问题。
Vue3版本的问题比Vue2还多,有时候要靠玄学解决。v-if和自定义组件,组合在一起,有时候移动代码的位置才能不报错
不知道是不是编译有问题
现在论坛也是乌烟瘴气,特别是有一群傻狗,为了热度接外包,天天在帖子下面刷热度。
收起阅读 »
傻鸟uniapp,我打个包需要登录
这什么操作,还要验证手机,咋地不登录还不能打包了,这年头代码写完打包还需要平台同意的吗
这什么操作,还要验证手机,咋地不登录还不能打包了,这年头代码写完打包还需要平台同意的吗

免苹果开发者账号申请iOS上架及证书打包ipa测试(2022最新详解)
虽然xcode现在可以免证书进行测试了,但众多跨平台开发者,如果还没注册苹果开发者账号。
想安装到自己非越狱手机测试是无能为力了。
不过新技术来了,只需要普通免费的苹果账号无需付费成为开发者就可以申请ios证书打包ipa安装到自己手机测试,强大吧!
这个神器就是Appuploader,ios app测试及上架辅助工具。
Appuploader安装教程
当然如果要上架App Store还是需要注册一个付费的苹果开发者账号。
如果只是安装ios应用到自己手机测试,现在只需要注册一个普通的苹果账号就行了。
下面进入教程
申请ios证书打包ipa测试分五步进行
1.申请一个苹果账号
2.申请ios测试证书(p12)
3.申请ios描述文件(mobileprovision)
4.打包ipa
5.安装ipa
一、申请苹果账号
1、点击苹果id注册地址,输入相关信息注册,如果已经有苹果账号了看第二步,还需要登录下苹果开发者中心,同意下协议,
https://appleid.apple.com/account?localang=zh_CN
2、注册成功了,或者有苹果账号了,登录苹果开发者中心
https://developer.apple.com/account
打钩同意协议,点击Submit提交
如此就可以登录Appuploader,创建ios测试证书了。
二、申请ios测试证书(p12)
1、打开Appuploader,用苹果账号登录
如果出现这个提示说明还没在苹果开发者中心同意协议,先同意下,请看第一个大步骤的第二小步。
2、登录上去有个提示不用管、叉掉,选择Certification
3、点击右下角+ADD,选择第一项 ios App development,输入名称(英文随意)、邮箱(随意)、
密码后面打包ipa时要用到,要记住,123之类密码的就行。
4、点击p12 File下载保存.p12 证书文件
三、申请ios描述文件(mobileprovision)
1、返回软件,选择Profiles
像我开始输入的com.ceshi.ceshi出现错误提示,格式虽然没错,但有报错,尝试修改下不报错就行了。 后面我改下如com.fen.tian,如此就ok,appid在打包ipa时要填写,记好。 3、下一步添加用来测试的手机了,先获取UUID。 使用 iPhone 或 iPad 扫码选择自带的浏览器safari浏览器打开二维码里的链接,即可快速获取 UDID 或者连接苹果手机助手获取到。 这个一长串的就是设备的UUID
4、获取到UUID、点击Add Device,复制上去,输入设备名称,点击ok。 可以添加多个
选择刚创建的appid 如com.fen.tian,勾选关联第一步创建的ios证书p12,选择要测试的设备,可多选。
输入名称,点击ok创建。
4、点击Download下载保存.mobileprovision,描述文件。
四、打包ipa
各开发者工具打包教程
APICloud打包教程 phonegap打包教程 xcode打包教程 APPcan打包教程
这里以HBuilder平台为例
1、打开HBuilder工具,选择完工的项目,点击发行,选择发行为原生安装包。
2、选择iOS打包,支持的设备类型,使用苹果证书,填写AppID(刚创建的那个com.fen.tian),
上传之前创建的iOS证书.p12及配置文件.mobileprovision并输入创建ios证书p12时设置的密码,点击打包。
3、打包成功后,下载保存ipa,这个ipa包就能进行测试或上传App Store了。
五、安装ipa
1、下载爱思苹果助手,连接上手机,苹果官方的iTunes助手安装不了,不要用这个。
https://www.i4.cn/
点击应用游戏,点击导入安装,选择刚打包的ipa包。2、ipa将自动安装,类型是越狱版,安装成功后显示个人正版,因为是个人ios证书打包,没上架App Store。
3、安装成功了第一次启动应用会出现如下提示,用测试证书或者企业证书打包的ipa都会这样,需要设置一下。点击设置、进入通用,下拉选择描述文件和设备管理。
4、点击开发者应用下面出现的账号,信任,然后就能启动应用,不在出现提示。
虽然xcode现在可以免证书进行测试了,但众多跨平台开发者,如果还没注册苹果开发者账号。
想安装到自己非越狱手机测试是无能为力了。
不过新技术来了,只需要普通免费的苹果账号无需付费成为开发者就可以申请ios证书打包ipa安装到自己手机测试,强大吧!
这个神器就是Appuploader,ios app测试及上架辅助工具。
Appuploader安装教程
当然如果要上架App Store还是需要注册一个付费的苹果开发者账号。
如果只是安装ios应用到自己手机测试,现在只需要注册一个普通的苹果账号就行了。
下面进入教程
申请ios证书打包ipa测试分五步进行
1.申请一个苹果账号
2.申请ios测试证书(p12)
3.申请ios描述文件(mobileprovision)
4.打包ipa
5.安装ipa
一、申请苹果账号
1、点击苹果id注册地址,输入相关信息注册,如果已经有苹果账号了看第二步,还需要登录下苹果开发者中心,同意下协议,
https://appleid.apple.com/account?localang=zh_CN
2、注册成功了,或者有苹果账号了,登录苹果开发者中心
https://developer.apple.com/account
打钩同意协议,点击Submit提交
如此就可以登录Appuploader,创建ios测试证书了。
二、申请ios测试证书(p12)
1、打开Appuploader,用苹果账号登录
如果出现这个提示说明还没在苹果开发者中心同意协议,先同意下,请看第一个大步骤的第二小步。
2、登录上去有个提示不用管、叉掉,选择Certification
3、点击右下角+ADD,选择第一项 ios App development,输入名称(英文随意)、邮箱(随意)、
密码后面打包ipa时要用到,要记住,123之类密码的就行。
4、点击p12 File下载保存.p12 证书文件
三、申请ios描述文件(mobileprovision)
1、返回软件,选择Profiles
像我开始输入的com.ceshi.ceshi出现错误提示,格式虽然没错,但有报错,尝试修改下不报错就行了。 后面我改下如com.fen.tian,如此就ok,appid在打包ipa时要填写,记好。 3、下一步添加用来测试的手机了,先获取UUID。 使用 iPhone 或 iPad 扫码选择自带的浏览器safari浏览器打开二维码里的链接,即可快速获取 UDID 或者连接苹果手机助手获取到。 这个一长串的就是设备的UUID
4、获取到UUID、点击Add Device,复制上去,输入设备名称,点击ok。 可以添加多个
选择刚创建的appid 如com.fen.tian,勾选关联第一步创建的ios证书p12,选择要测试的设备,可多选。
输入名称,点击ok创建。
4、点击Download下载保存.mobileprovision,描述文件。
四、打包ipa
各开发者工具打包教程
APICloud打包教程 phonegap打包教程 xcode打包教程 APPcan打包教程
这里以HBuilder平台为例
1、打开HBuilder工具,选择完工的项目,点击发行,选择发行为原生安装包。
2、选择iOS打包,支持的设备类型,使用苹果证书,填写AppID(刚创建的那个com.fen.tian),
上传之前创建的iOS证书.p12及配置文件.mobileprovision并输入创建ios证书p12时设置的密码,点击打包。
3、打包成功后,下载保存ipa,这个ipa包就能进行测试或上传App Store了。
五、安装ipa
1、下载爱思苹果助手,连接上手机,苹果官方的iTunes助手安装不了,不要用这个。
https://www.i4.cn/
点击应用游戏,点击导入安装,选择刚打包的ipa包。2、ipa将自动安装,类型是越狱版,安装成功后显示个人正版,因为是个人ios证书打包,没上架App Store。
3、安装成功了第一次启动应用会出现如下提示,用测试证书或者企业证书打包的ipa都会这样,需要设置一下。点击设置、进入通用,下拉选择描述文件和设备管理。
4、点击开发者应用下面出现的账号,信任,然后就能启动应用,不在出现提示。
收起阅读 »
IOS打包失败
Appid: UNI14B6086
Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild archive -sdk iphoneos16.2 -project [PackagePath]/HBuilder.xcodeproj -archivePath [PackagePath]/XArchive/HBuilder.xcarchive -scheme HBuilder -configuration Release
User defaults from command line:
IDEArchivePathOverride = [PackagePath]/XArchive/HBuilder.xcarchive
IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
SDKROOT = iphoneos16.2
Prepare packages
Computing target dependency graph and provisioning inputs
Create build description
Build description signature: 849fb7996356ad8e10a192e3d69b5706
Build description path: /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/XCBuildData/849fb7996356ad8e10a192e3d69b5706-desc.xcbuild
note: Building targets in dependency order
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos
[PackagePath]/HBuilder.xcodeproj: warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'HBuilder' from project 'HBuilder')
[PackagePath]/HBuilder.xcodeproj: warning: Provisioning profile \"FB_Distribution_20230406\" for \"HBuilder\" contains entitlements that aren't in the entitlements file: com.apple.developer.coremedia.hls.low-latency. To use these entitlements, add them to your entitlements file. Otherwise, remove unused entitlements from your provisioning profile. (in target 'HBuilder' from project 'HBuilder')
warning: Run script build phase 'Run Script' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking \"Based on dependency analysis\" in the script phase. (in target 'HBuilder' from project 'HBuilder')
SymLink /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos/HBuilder.app /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/bin/ln -sfh /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos/HBuilder.app
MkDir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/bin/mkdir -p /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app
ProcessProductPackaging /Users/[Name]/Library/MobileDevice/Provisioning\ Profiles/66d2869a-20f2-41b7-a608-2d7961aa452b.mobileprovision /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/embedded.mobileprovision (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-productPackagingUtility /Users/[Name]/Library/MobileDevice/Provisioning\ Profiles/66d2869a-20f2-41b7-a608-2d7961aa452b.mobileprovision -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/embedded.mobileprovision
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources/Entitlements.plist (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources/Entitlements.plist
ProcessProductPackaging [PackagePath]/HBuilder/HBuilder.entitlements /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
Entitlements:
{
\"application-identifier\" = \"YQM5H857L5.com.fp.package\";
\"beta-reports-active\" = 1;
\"com.apple.developer.team-identifier\" = YQM5H857L5;
\"get-task-allow\" = 0;
}
builtin-productPackagingUtility [PackagePath]/HBuilder/HBuilder.entitlements -entitlements -format xml -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent
ProcessProductPackagingDER /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent.der (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/usr/bin/derq query -f xml -i /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent.der --raw
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/all-product-headers.yaml (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/all-product-headers.yaml
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-own-target-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-own-target-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-project-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-project-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-generated-files.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-generated-files.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-non-framework-target-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-non-framework-target-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-target-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-target-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder.LinkFileList (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder.LinkFileList
CpResource /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/control.xml [PackagePath]/HBuilder/control.xml (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks [PackagePath]/HBuilder/control.xml /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app
CpResource /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/Pandora [PackagePath]/HBuilder/Pandora (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks [PackagePath]/HBuilder/Pandora /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj/Localizable.strings [PackagePath]/HBuilder/zh-Hans.lproj/Localizable.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj -- [PackagePath]/HBuilder/zh-Hans.lproj/Localizable.strings
[PackagePath]/HBuilder/zh-Hans.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj/InfoPlist.strings [PackagePath]/HBuilder/zh-Hans.lproj/InfoPlist.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename InfoPlist.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj -- [PackagePath]/HBuilder/zh-Hans.lproj/InfoPlist.strings
[PackagePath]/HBuilder/zh-Hans.lproj/InfoPlist.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj/InfoPlist.strings [PackagePath]/HBuilder/en.lproj/InfoPlist.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename InfoPlist.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj -- [PackagePath]/HBuilder/en.lproj/InfoPlist.strings
[PackagePath]/HBuilder/en.lproj/InfoPlist.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj/Localizable.strings [PackagePath]/HBuilder/en.lproj/Localizable.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj -- [PackagePath]/HBuilder/en.lproj/Localizable.strings
[PackagePath]/HBuilder/en.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyPNGFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@3x.png [PackagePath]/HBuilder/dcloud_logo@3x.png (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/copypng -compress -strip-PNG-text [PackagePath]/HBuilder/dcloud_logo@3x.png /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@3x.png
CopyPNGFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@2x.png [PackagePath]/HBuilder/dcloud_logo@2x.png (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/copypng -compress -strip-PNG-text [PackagePath]/HBuilder/dcloud_logo@2x.png /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@2x.png
CompileStoryboard [PackagePath]/HBuilder/Base.lproj/LaunchScreenAD.storyboard (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --companion-strings-file en:[PackagePath]/HBuilder/en.lproj/LaunchScreenAD.strings --companion-strings-file zh-Hans:[PackagePath]/HBuilder/zh-Hans.lproj/LaunchScreenAD.strings --module HBuilder --output-partial-info-plist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreenAD-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --minimum-deployment-target 9.0 --output-format human-readable-text --compilation-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj [PackagePath]/HBuilder/Base.lproj/LaunchScreenAD.storyboard
CompileStoryboard [PackagePath]/HBuilder/Base.lproj/LaunchScreen.storyboard (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --companion-strings-file en:[PackagePath]/HBuilder/en.lproj/LaunchScreen.strings --companion-strings-file zh-Hans:[PackagePath]/HBuilder/zh-Hans.lproj/LaunchScreen.strings --module HBuilder --output-partial-info-plist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreen-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --minimum-deployment-target 9.0 --output-format human-readable-text --compilation-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj [PackagePath]/HBuilder/Base.lproj/LaunchScreen.storyboard
CompileC /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.o [PackagePath]/HBuilder/source/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios9.0 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path\=/Users/[Name]/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/[Name]/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-implicit-fallthrough -DNS_BLOCK_ASSERTIONS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -fvisibility\=hidden -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-generated-files.hmap -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-own-target-headers.hmap -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-target-headers.hmap -iquote /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-project-headers.hmap -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos/include -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources-normal/arm64 -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources/arm64 -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources -F/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks -F[SourcePath]/libs/Universal -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks -F[SourcePath]/libs/Universal -MMD -MT dependencies -MF /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.d --serialize-diagnostics /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.dia -c [PackagePath]/HBuilder/source/main.m -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.o
CompileAssetCatalog /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app [PackagePath]/HBuilder/Assets.xcassets (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/assetcatalog_dependencies --output-partial-info-plist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/assetcatalog_generated_info.plist --app-icon AppIcon --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --minimum-deployment-target 9.0 --platform iphoneos --compile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app [PackagePath]/HBuilder/Assets.xcassets
/ com.apple.actool.errors /
[PackagePath]/HBuilder/Assets.xcassets: error: The stickers icon set or app icon set named \"AppIcon\" did not have any applicable content.
/ com.apple.actool.document.warnings /
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][20x20][][][2x][][][]: warning: AppIcon.appiconset/icon40-notification@2x.png is 200x200 but should be 40x40.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][29x29][][][2x][][][]: warning: AppIcon.appiconset/icon58-settings@2x.png is 200x200 but should be 58x58.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][29x29][][][3x][][][]: warning: AppIcon.appiconset/icon87-settings@3x.png is 200x200 but should be 87x87.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][40x40][][][2x][][][]: warning: AppIcon.appiconset/icon80-spotlight@2x.png is 200x200 but should be 80x80.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][20x20][][][3x][][][]: warning: AppIcon.appiconset/icon60-notification@3x.png is 200x200 but should be 60x60.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][60x60][][][2x][][][]: warning: AppIcon.appiconset/icon120-app@2x.png is 200x200 but should be 120x120.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][40x40][][][3x][][][]: warning: AppIcon.appiconset/icon120-spotlight@3x.png is 200x200 but should be 120x120.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][ios-marketing][1024x1024][][][1x][][][]: warning: AppIcon.appiconset/icon1024.png is 200x200 but should be 1024x1024.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][60x60][][][3x][][][]: warning: AppIcon.appiconset/icon180-app@3x.png is 200x200 but should be 180x180.
/ com.apple.actool.compilation-results /
/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/Assets.car
/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/assetcatalog_generated_info.plistLd /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/HBuilder normal (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target arm64-apple-ios9.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.2.sdk -L/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs -L/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos -L[SourcePath]/libs/UniSDK/Base -L[SourcePath]/libs/UniSDK -L[PackagePath]/utsFrameworks/ -L[SourcePath]/libs/Universal -F/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs -F/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks/ -F[SourcePath]/libs/Universal -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks/ -F[SourcePath]/libs/Universal -filelist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder_lto.o -Xlinker -final_output -Xlinker /Applications/HBuilder.app/HBuilder -fobjc-arc -fobjc-link-runtime -ObjC -llibLoader -llibAccelerometer -lopencore-amrnb -lmp3lame -llibMedia -llibCache -llibLog -llibIO -llibPGInvocation -llibNativeObj -llibNativeUI -llibNavigator -llibPGProximity -llibStorage -llibUI -llibXHR -llibZip -llibOauth -llibMap -llibGeolocation -llibVideo -lDCUniVideo -llibCamera -lAMapLocationPlugin -lAMapImp -lDCUniMap -lDCUniAmap -weak_framework Accelerate -weak_framework AudioToolbox -weak_framework AVFoundation -weak_framework CFNetwork -weak_framework CoreFoundation -weak_framework CoreGraphics -weak_framework CoreMedia -weak_framework CoreTelephony -weak_framework CoreText -weak_framework CoreVideo -weak_framework Foundation -weak_framework ImageIO -weak_framework JavaScriptCore -weak_framework MobileCoreServices -weak_framework MediaPlayer -weak_framework QuartzCore -weak_framework QuickLook -weak_framework Security -weak_framework SystemConfiguration -weak_framework UIKit -weak_framework WebKit -lc++ -lz -lxml2 -lsqlite3 -weak_framework MetalKit -weak_framework GLKit -weak_framework CoreLocation -weak_framework MapKit -lbz2 -weak_framework VideoToolbox -weak_framework DCUniVideoPublic -weak_framework Masonry -weak_framework IJKMediaFrameworkWithSSL -weak_framework OpenGLES -weak_framework AssetsLibrary -weak_framework Photos -weak_framework PhotosUI -licucore -liconv -weak_framework ExternalAccessory -weak_framework security -weak_framework AMapFoundationKit -weak_framework AMapLocationKit -weak_framework AMapSearchKit -weak_framework MAMapKit -weak_framework DCUniBase -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder_dependency_info.dat -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/HBuilder
ld: warning: arm64 function not 4-byte aligned: _dc_ffi_call_SYSV from [SourcePath]/libs/UniSDK/liblibPGInvocation.a(sysv_arm64.o)
ld: warning: arm64 function not 4-byte aligned: _ffi_closure_SYSV from [SourcePath]/libs/UniSDK/liblibPGInvocation.a(sysv_arm64.o)
ld: warning: method '-imageLoaded:userInfo:' in category from [SourcePath]/libs/UniSDK/libDCUniVideo.a(UIImageView+WXVideo.o) conflicts with same method from another category
ld: warning: method '-imageLoaded:type:userInfo:' in category from [SourcePath]/libs/UniSDK/libDCUniVideo.a(UIImageView+WXVideo.o) conflicts with same method from another category
LinkStoryboards (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module HBuilder --target-device iphone --minimum-deployment-target 9.0 --output-format human-readable-text --link /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreen.storyboardc /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreenAD.storyboardc
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:00008112-001150CA3EC3C01E }
{ platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
{ platform:iOS Simulator, id:5BD30D75-25D3-4BC8-A4D2-EE955F15524D, OS:16.2, name:iPad (10th generation) }
{ platform:iOS Simulator, id:037D3741-E972-4441-BBC2-E1E98B5388AF, OS:16.2, name:iPad Air (5th generation) }
{ platform:iOS Simulator, id:E60C95B7-F98A-4B32-82B2-C6A47CF43036, OS:16.2, name:iPad Pro (11-inch) (4th generation) }
{ platform:iOS Simulator, id:4097C857-B917-4695-9F42-61AB950CE827, OS:16.2, name:iPad Pro (12.9-inch) (6th generation) }
{ platform:iOS Simulator, id:6E9ABFA9-5123-49AE-A702-65E35AB75E4E, OS:16.2, name:iPad mini (6th generation) }
{ platform:iOS Simulator, id:1F110B45-0CA7-4275-BDE0-7B438309C47E, OS:16.2, name:iPhone 14 }
{ platform:iOS Simulator, id:F09AA35A-066D-46F0-8F03-F90C12699F4A, OS:16.2, name:iPhone 14 Plus }
{ platform:iOS Simulator, id:434FCFDB-034F-4556-97EA-569DE189172D, OS:16.2, name:iPhone 14 Pro }
{ platform:iOS Simulator, id:3E399DFD-1047-42B4-87CB-57ED905BAC73, OS:16.2, name:iPhone 14 Pro Max }
{ platform:iOS Simulator, id:86EB4296-D923-4EBC-8C02-3378D03C9119, OS:16.2, name:iPhone SE (3rd generation) }
ARCHIVE FAILED The following build commands failed:
CompileAssetCatalog /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app [PackagePath]/HBuilder/Assets.xcassets (in target 'HBuilder' from project 'HBuilder')
(1 failure)
Appid: UNI14B6086
Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild archive -sdk iphoneos16.2 -project [PackagePath]/HBuilder.xcodeproj -archivePath [PackagePath]/XArchive/HBuilder.xcarchive -scheme HBuilder -configuration Release
User defaults from command line:
IDEArchivePathOverride = [PackagePath]/XArchive/HBuilder.xcarchive
IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
SDKROOT = iphoneos16.2
Prepare packages
Computing target dependency graph and provisioning inputs
Create build description
Build description signature: 849fb7996356ad8e10a192e3d69b5706
Build description path: /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/XCBuildData/849fb7996356ad8e10a192e3d69b5706-desc.xcbuild
note: Building targets in dependency order
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs
CreateBuildDirectory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos
cd [PackagePath]/HBuilder.xcodeproj
builtin-create-build-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos
[PackagePath]/HBuilder.xcodeproj: warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 9.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (in target 'HBuilder' from project 'HBuilder')
[PackagePath]/HBuilder.xcodeproj: warning: Provisioning profile \"FB_Distribution_20230406\" for \"HBuilder\" contains entitlements that aren't in the entitlements file: com.apple.developer.coremedia.hls.low-latency. To use these entitlements, add them to your entitlements file. Otherwise, remove unused entitlements from your provisioning profile. (in target 'HBuilder' from project 'HBuilder')
warning: Run script build phase 'Run Script' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking \"Based on dependency analysis\" in the script phase. (in target 'HBuilder' from project 'HBuilder')
SymLink /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos/HBuilder.app /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/bin/ln -sfh /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos/HBuilder.app
MkDir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/bin/mkdir -p /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app
ProcessProductPackaging /Users/[Name]/Library/MobileDevice/Provisioning\ Profiles/66d2869a-20f2-41b7-a608-2d7961aa452b.mobileprovision /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/embedded.mobileprovision (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-productPackagingUtility /Users/[Name]/Library/MobileDevice/Provisioning\ Profiles/66d2869a-20f2-41b7-a608-2d7961aa452b.mobileprovision -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/embedded.mobileprovision
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources/Entitlements.plist (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources/Entitlements.plist
ProcessProductPackaging [PackagePath]/HBuilder/HBuilder.entitlements /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
Entitlements:
{
\"application-identifier\" = \"YQM5H857L5.com.fp.package\";
\"beta-reports-active\" = 1;
\"com.apple.developer.team-identifier\" = YQM5H857L5;
\"get-task-allow\" = 0;
}
builtin-productPackagingUtility [PackagePath]/HBuilder/HBuilder.entitlements -entitlements -format xml -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent
ProcessProductPackagingDER /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent.der (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/usr/bin/derq query -f xml -i /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.app.xcent.der --raw
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/all-product-headers.yaml (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/all-product-headers.yaml
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-own-target-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-own-target-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-project-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-project-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-generated-files.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-generated-files.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-non-framework-target-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-non-framework-target-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-target-headers.hmap (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-target-headers.hmap
WriteAuxiliaryFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder.LinkFileList (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
write-file /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder.LinkFileList
CpResource /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/control.xml [PackagePath]/HBuilder/control.xml (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks [PackagePath]/HBuilder/control.xml /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app
CpResource /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/Pandora [PackagePath]/HBuilder/Pandora (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks [PackagePath]/HBuilder/Pandora /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj/Localizable.strings [PackagePath]/HBuilder/zh-Hans.lproj/Localizable.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj -- [PackagePath]/HBuilder/zh-Hans.lproj/Localizable.strings
[PackagePath]/HBuilder/zh-Hans.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj/InfoPlist.strings [PackagePath]/HBuilder/zh-Hans.lproj/InfoPlist.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename InfoPlist.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/zh-Hans.lproj -- [PackagePath]/HBuilder/zh-Hans.lproj/InfoPlist.strings
[PackagePath]/HBuilder/zh-Hans.lproj/InfoPlist.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj/InfoPlist.strings [PackagePath]/HBuilder/en.lproj/InfoPlist.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename InfoPlist.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj -- [PackagePath]/HBuilder/en.lproj/InfoPlist.strings
[PackagePath]/HBuilder/en.lproj/InfoPlist.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyStringsFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj/Localizable.strings [PackagePath]/HBuilder/en.lproj/Localizable.strings (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/en.lproj -- [PackagePath]/HBuilder/en.lproj/Localizable.strings
[PackagePath]/HBuilder/en.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'HBuilder' from project 'HBuilder')
CopyPNGFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@3x.png [PackagePath]/HBuilder/dcloud_logo@3x.png (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/copypng -compress -strip-PNG-text [PackagePath]/HBuilder/dcloud_logo@3x.png /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@3x.png
CopyPNGFile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@2x.png [PackagePath]/HBuilder/dcloud_logo@2x.png (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/copypng -compress -strip-PNG-text [PackagePath]/HBuilder/dcloud_logo@2x.png /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/dcloud_logo@2x.png
CompileStoryboard [PackagePath]/HBuilder/Base.lproj/LaunchScreenAD.storyboard (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --companion-strings-file en:[PackagePath]/HBuilder/en.lproj/LaunchScreenAD.strings --companion-strings-file zh-Hans:[PackagePath]/HBuilder/zh-Hans.lproj/LaunchScreenAD.strings --module HBuilder --output-partial-info-plist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreenAD-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --minimum-deployment-target 9.0 --output-format human-readable-text --compilation-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj [PackagePath]/HBuilder/Base.lproj/LaunchScreenAD.storyboard
CompileStoryboard [PackagePath]/HBuilder/Base.lproj/LaunchScreen.storyboard (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --companion-strings-file en:[PackagePath]/HBuilder/en.lproj/LaunchScreen.strings --companion-strings-file zh-Hans:[PackagePath]/HBuilder/zh-Hans.lproj/LaunchScreen.strings --module HBuilder --output-partial-info-plist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreen-SBPartialInfo.plist --auto-activate-custom-fonts --target-device iphone --minimum-deployment-target 9.0 --output-format human-readable-text --compilation-directory /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj [PackagePath]/HBuilder/Base.lproj/LaunchScreen.storyboard
CompileC /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.o [PackagePath]/HBuilder/source/main.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target arm64-apple-ios9.0 -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -gmodules -fmodules-cache-path\=/Users/[Name]/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/[Name]/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -Os -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wquoted-include-in-framework-header -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-implicit-fallthrough -DNS_BLOCK_ASSERTIONS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.2.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -fvisibility\=hidden -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -iquote /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-generated-files.hmap -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-own-target-headers.hmap -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-all-target-headers.hmap -iquote /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/HBuilder-project-headers.hmap -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos/include -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources-normal/arm64 -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources/arm64 -I/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/DerivedSources -F/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks -F[SourcePath]/libs/Universal -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks -F[SourcePath]/libs/Universal -MMD -MT dependencies -MF /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.d --serialize-diagnostics /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.dia -c [PackagePath]/HBuilder/source/main.m -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/main.o
CompileAssetCatalog /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app [PackagePath]/HBuilder/Assets.xcassets (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/actool --output-format human-readable-text --notices --warnings --export-dependency-info /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/assetcatalog_dependencies --output-partial-info-plist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/assetcatalog_generated_info.plist --app-icon AppIcon --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --minimum-deployment-target 9.0 --platform iphoneos --compile /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app [PackagePath]/HBuilder/Assets.xcassets
/ com.apple.actool.errors /
[PackagePath]/HBuilder/Assets.xcassets: error: The stickers icon set or app icon set named \"AppIcon\" did not have any applicable content.
/ com.apple.actool.document.warnings /
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][20x20][][][2x][][][]: warning: AppIcon.appiconset/icon40-notification@2x.png is 200x200 but should be 40x40.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][29x29][][][2x][][][]: warning: AppIcon.appiconset/icon58-settings@2x.png is 200x200 but should be 58x58.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][29x29][][][3x][][][]: warning: AppIcon.appiconset/icon87-settings@3x.png is 200x200 but should be 87x87.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][40x40][][][2x][][][]: warning: AppIcon.appiconset/icon80-spotlight@2x.png is 200x200 but should be 80x80.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][20x20][][][3x][][][]: warning: AppIcon.appiconset/icon60-notification@3x.png is 200x200 but should be 60x60.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][60x60][][][2x][][][]: warning: AppIcon.appiconset/icon120-app@2x.png is 200x200 but should be 120x120.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][40x40][][][3x][][][]: warning: AppIcon.appiconset/icon120-spotlight@3x.png is 200x200 but should be 120x120.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][ios-marketing][1024x1024][][][1x][][][]: warning: AppIcon.appiconset/icon1024.png is 200x200 but should be 1024x1024.
[PackagePath]/HBuilder/Assets.xcassets:./AppIcon.appiconset/[][iphone][60x60][][][3x][][][]: warning: AppIcon.appiconset/icon180-app@3x.png is 200x200 but should be 180x180.
/ com.apple.actool.compilation-results /
/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/Assets.car
/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/assetcatalog_generated_info.plistLd /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/HBuilder normal (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -target arm64-apple-ios9.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS16.2.sdk -L/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs -L/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos -L[SourcePath]/libs/UniSDK/Base -L[SourcePath]/libs/UniSDK -L[PackagePath]/utsFrameworks/ -L[SourcePath]/libs/Universal -F/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/EagerLinkingTBDs -F/Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/BuildProductsPath/Release-iphoneos -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks/ -F[SourcePath]/libs/Universal -F[SourcePath]/libs/UniSDK/Base -F[SourcePath]/libs/UniSDK -F[PackagePath]/utsFrameworks/ -F[SourcePath]/libs/Universal -filelist /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder_lto.o -Xlinker -final_output -Xlinker /Applications/HBuilder.app/HBuilder -fobjc-arc -fobjc-link-runtime -ObjC -llibLoader -llibAccelerometer -lopencore-amrnb -lmp3lame -llibMedia -llibCache -llibLog -llibIO -llibPGInvocation -llibNativeObj -llibNativeUI -llibNavigator -llibPGProximity -llibStorage -llibUI -llibXHR -llibZip -llibOauth -llibMap -llibGeolocation -llibVideo -lDCUniVideo -llibCamera -lAMapLocationPlugin -lAMapImp -lDCUniMap -lDCUniAmap -weak_framework Accelerate -weak_framework AudioToolbox -weak_framework AVFoundation -weak_framework CFNetwork -weak_framework CoreFoundation -weak_framework CoreGraphics -weak_framework CoreMedia -weak_framework CoreTelephony -weak_framework CoreText -weak_framework CoreVideo -weak_framework Foundation -weak_framework ImageIO -weak_framework JavaScriptCore -weak_framework MobileCoreServices -weak_framework MediaPlayer -weak_framework QuartzCore -weak_framework QuickLook -weak_framework Security -weak_framework SystemConfiguration -weak_framework UIKit -weak_framework WebKit -lc++ -lz -lxml2 -lsqlite3 -weak_framework MetalKit -weak_framework GLKit -weak_framework CoreLocation -weak_framework MapKit -lbz2 -weak_framework VideoToolbox -weak_framework DCUniVideoPublic -weak_framework Masonry -weak_framework IJKMediaFrameworkWithSSL -weak_framework OpenGLES -weak_framework AssetsLibrary -weak_framework Photos -weak_framework PhotosUI -licucore -liconv -weak_framework ExternalAccessory -weak_framework security -weak_framework AMapFoundationKit -weak_framework AMapLocationKit -weak_framework AMapSearchKit -weak_framework MAMapKit -weak_framework DCUniBase -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Objects-normal/arm64/HBuilder_dependency_info.dat -o /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app/HBuilder
ld: warning: arm64 function not 4-byte aligned: _dc_ffi_call_SYSV from [SourcePath]/libs/UniSDK/liblibPGInvocation.a(sysv_arm64.o)
ld: warning: arm64 function not 4-byte aligned: _ffi_closure_SYSV from [SourcePath]/libs/UniSDK/liblibPGInvocation.a(sysv_arm64.o)
ld: warning: method '-imageLoaded:userInfo:' in category from [SourcePath]/libs/UniSDK/libDCUniVideo.a(UIImageView+WXVideo.o) conflicts with same method from another category
ld: warning: method '-imageLoaded:type:userInfo:' in category from [SourcePath]/libs/UniSDK/libDCUniVideo.a(UIImageView+WXVideo.o) conflicts with same method from another category
LinkStoryboards (in target 'HBuilder' from project 'HBuilder')
cd [PackagePath]
/Applications/Xcode.app/Contents/Developer/usr/bin/ibtool --errors --warnings --notices --module HBuilder --target-device iphone --minimum-deployment-target 9.0 --output-format human-readable-text --link /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreen.storyboardc /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/IntermediateBuildFilesPath/HBuilder.build/Release-iphoneos/HBuilder.build/Base.lproj/LaunchScreenAD.storyboardc
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:00008112-001150CA3EC3C01E }
{ platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
{ platform:iOS Simulator, id:5BD30D75-25D3-4BC8-A4D2-EE955F15524D, OS:16.2, name:iPad (10th generation) }
{ platform:iOS Simulator, id:037D3741-E972-4441-BBC2-E1E98B5388AF, OS:16.2, name:iPad Air (5th generation) }
{ platform:iOS Simulator, id:E60C95B7-F98A-4B32-82B2-C6A47CF43036, OS:16.2, name:iPad Pro (11-inch) (4th generation) }
{ platform:iOS Simulator, id:4097C857-B917-4695-9F42-61AB950CE827, OS:16.2, name:iPad Pro (12.9-inch) (6th generation) }
{ platform:iOS Simulator, id:6E9ABFA9-5123-49AE-A702-65E35AB75E4E, OS:16.2, name:iPad mini (6th generation) }
{ platform:iOS Simulator, id:1F110B45-0CA7-4275-BDE0-7B438309C47E, OS:16.2, name:iPhone 14 }
{ platform:iOS Simulator, id:F09AA35A-066D-46F0-8F03-F90C12699F4A, OS:16.2, name:iPhone 14 Plus }
{ platform:iOS Simulator, id:434FCFDB-034F-4556-97EA-569DE189172D, OS:16.2, name:iPhone 14 Pro }
{ platform:iOS Simulator, id:3E399DFD-1047-42B4-87CB-57ED905BAC73, OS:16.2, name:iPhone 14 Pro Max }
{ platform:iOS Simulator, id:86EB4296-D923-4EBC-8C02-3378D03C9119, OS:16.2, name:iPhone SE (3rd generation) }
ARCHIVE FAILED The following build commands failed:
CompileAssetCatalog /Users/[Name]/Library/Developer/Xcode/DerivedData/HBuilder-gehsvcnwjhpulgdifxrsnreyovkp/Build/Intermediates.noindex/ArchiveIntermediates/HBuilder/InstallationBuildProductsLocation/Applications/HBuilder.app [PackagePath]/HBuilder/Assets.xcassets (in target 'HBuilder' from project 'HBuilder')
(1 failure)

华为上架时一直提示您的应用在用户拒绝【位置】权限后,存在重新运行时弹窗申请权限问题,不符合华为应用市场审核标准。
解决方法:
1.首页需要获取定位
- 存一个标识在缓存里
- 每次重新运行时首先先判断是否有这个标识,如果时拒绝定位,则显示未开启定位和点击刷新定位按钮
- 如果是允许定位,则进入获取经纬度方法
不懂得可以咨询我qq 2981739544
解决方法:
1.首页需要获取定位
- 存一个标识在缓存里
- 每次重新运行时首先先判断是否有这个标识,如果时拒绝定位,则显示未开启定位和点击刷新定位按钮
- 如果是允许定位,则进入获取经纬度方法
不懂得可以咨询我qq 2981739544