加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
buildios.sh 2.25 KB
一键复制 编辑 原始数据 按行查看 历史
Advancer68 提交于 2021-07-31 15:49 . set archive ipa is relative path
echo "Start Building"
#project_path="Unity-iPhone"
project_path=$1
echo project_path = $project_path
plen=${#project_path}
prexx=${project_path:plen-1}
#echo prexx = $prexx
if [ "$prexx" == "/" ]; then
#statements
project_path=${project_path:0:plen-1}
echo reset project_path = $project_path
fi
#UABUILD_ARCHIVES="/Users/iqigame/Documents/archives"
UABUILD_ARCHIVES="../../archives"
echo UABUILD_ARCHIVES = $UABUILD_ARCHIVES
#UABUILD_IPA="/Users/iqigame/Documents/Ipa"
UABUILD_IPA="../../ipa"
echo UABUILD_IPA = $UABUILD_IPA
ipa_prefix=${project_path##*/}
echo ipa_prefix = $ipa_prefix
scheme_name="Unity-iPhone"
timey="`date +%Y%m%d`"
echo timey = $timey
timed="`date +%H%M%S`"
echo timed = $timed
ipa_name=${ipa_prefix}-${timey}-${timed}
#export_plist=../${ipa_prefix}Args.plist
#export_plistDev=../ExportOptionsDev.plist
#echo export_plistDev = $export_plistDev
project_name="Unity-iPhone.xcodeproj"
configuration="Release"
archivePath=${UABUILD_ARCHIVES}/${ipa_name}.xcarchive
echo archivePath = $archivePath
cd $project_path
#echo "Clean Xcode"
#xcodebuild clean | xcpretty | gnomon
echo archive to: $archivePath
xcodebuild archive -project "${project_name}" -scheme "${scheme_name}" -configuration "$configuration" -archivePath "${archivePath}" -allowProvisioningUpdates | xcpretty | gnomon
#dis ipa
echo start dis ipa
ipaPath=${UABUILD_IPA}/${ipa_name}-Dis
echo exportIPA to: $ipaPath
export_plist=../../ExportOptionsDis.plist
echo export_plist = $export_plist
ziptoPath=${ipaPath}.zip
echo ipaPath = $ipaPath
xcodebuild -exportArchive -archivePath "${archivePath}" -exportOptionsPlist "${export_plist}" -exportPath "${ipaPath}" -allowProvisioningUpdates | xcpretty | gnomon
echo complete die ipa
open ${ipaPath}
#dev ipa
echo dev ipa
ipaPath=${UABUILD_IPA}/${ipa_name}-Dev
echo exportIPA to: $ipaPath
export_plist=../../ExportOptionsDev.plist
echo export_plist = $export_plist
ziptoPath=${ipaPath}.zip
echo ipaPath = $ipaPath
xcodebuild -exportArchive -archivePath "${archivePath}" -exportOptionsPlist "${export_plist}" -exportPath "${ipaPath}" -allowProvisioningUpdates | xcpretty | gnomon
echo complete dev ipa
#cd $ipaPath
#zip -r ${ziptoPath} * | gnomon
#echo zip to:$ziptoPath
open ${ipaPath}
echo "Successfully exported and signed the ipa file"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化