当前位置: 首页 > news >正文

南昌正规网站公司吗0元入驻的电商平台

南昌正规网站公司吗,0元入驻的电商平台,建设门户网站需要多少钱,手机网站的做1、QC里编译工程,生成Release版的的app文件; 2、运行macdeployqt把需要的文件打包进app文件中; % ~/Qt/5.15.0/clang_64/bin/macdeployqt {编译的app文件所在路径}/Release/xxxx.app 3、使用codesign对app进行签名,如果要发App…

1、QC里编译工程,生成Release版的的app文件;

2、运行macdeployqt把需要的文件打包进app文件中;

% ~/Qt/5.15.0/clang_64/bin/macdeployqt {编译的app文件所在路径}/Release/xxxx.app

3、使用codesign对app进行签名,如果要发App Store的话使用"Mac App Distribution"证书,如果不发的话使用”Developer ID Installer“证书,证书配置在苹果开发者账号苹果证书中创建。

下载证书并安装,结果如下:

3、然后使用codesign对app签名:

% codesign --entitlements {entitlements文件所在目录}/xxxx.entitlements -f -s "3rd Party Mac Developer Application: xxxxxx Co.,Ltd (VQ3IY989UY87)" -v xxxx.app --deep
#运行完结果如下:
xxxx.app: replacing existing signature
xxxx.app: signed app bundle with Mach-O thin (x86_64) [com.xxxx.xxxx] #此处是Bundle Identifier#签名完成

权限文件xxxx.entitlements,可以在xcode的工程里去复制一个,也可以根据需要的权限手工编辑:

检查签名结果:

% codesign -dvvv --entitlements  - xxxx.app
Executable=/这里忽略目录/xxxx.app/Contents/MacOS/xxxx
Identifier=com.xxxx.xxxx
Format=app bundle with Mach-O thin (x86_64)
CodeDirectory v=20400 size=18452 flags=0x0(none) hashes=566+7 location=embedded
Hash type=sha256 size=32
CandidateCDHash sha256=3ed48febdcc36c83hfyuuyt876236f4633bb7b
CandidateCDHashFull sha256=3ed48febdcc36c83a748febdcc36c83hfyuuyt876236f463317fb2f401a8f7a7afaf
Hash choices=sha256
CMSDigest=3ed48febdcc36dcc36c83hfyuuyt876236f46337fb2f401a8f7a7afaf
CMSDigestType=2
CDHash=3ed48febdcc3648dcc36c83hfyuuyt87623332f17236f4633bb7b
Signature size=4854
Authority=3rd Party Mac Developer Application: xxxxxxxxx Co.,Ltd (VQ3IY989UY87)
Authority=Apple Worldwide Developer Relations Certification Authority
Authority=Apple Root CA
Signed Time=Nov 2, 2024 at 01:06:18
Info.plist entries=14
TeamIdentifier=V86876Q87987F
Sealed Resources version=2 rules=13 files=46
Internal requirements count=1 size=232
[Dict][Key] com.apple.developer.usernotifications.communication[Value][Bool] true[Key] com.apple.security.app-sandbox[Value][Bool] true[Key] com.apple.security.files.user-selected.read-only[Value][Bool] true[Key] com.apple.security.files.user-selected.read-write[Value][Bool] true[Key] com.apple.security.network.client[Value][Bool] true[Key] com.apple.security.network.server[Value][Bool] true[Key] com.apple.security.personal-information.photos-library[Value][Bool] true[Key] com.apple.security.print[Value][Bool] true#下部分是权限列表

4、然后打开xxxx.app,找到里面的Info.plist文件编辑内容:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict><key>CFBundleExecutable</key> <!--这个必须要有--><string>xxxx</string><key>CFBundleIconFile</key><string>icon.icns</string><key>CFBundleIdentifier</key> <!--这个必须要有--><string>com.xxxx.xxxx</string><key>CFBundlePackageType</key> <!--这个必须要有--><string>APPL</string><key>CFBundleSignature</key><string>????</string><key>LSMinimumSystemVersion</key><string>10.13</string><key>NOTE</key><string>This file was generated by Qt/QMake.</string><key>NSPrincipalClass</key> <!--这个必须要有--><string>NSApplication</string><key>NSSupportsAutomaticGraphicsSwitching</key><true/><key>CFBundleDisplayName</key> <!--这个尽量要有--><string>我的应用</string><key>CFBundleName</key><string>我的应用</string> <!--这个必须要有--><key>LSApplicationCategoryType</key> <!--这个必须要有--><string>public.app-category.utilities</string><key>CFBundleVersion</key> <!--这个必须要有--><string>100</string><key>CFBundleShortVersionString</key><string>1.0.0</string> <!--这个必须要有--><key>ITSAppUsesNonExemptEncryption</key><false/>
</dict>
</plist>

5、然后,使用productbuild对app进行打包成pkg文件,这里注意使用另外一个安装证书”3rd Party Mac Developer Installer“:

% productbuild --component xxxx.app /Applications/ --sign "3rd Party Mac Developer Installer: xxxxxxxx Co.,Ltd (VQ3IY989UY87)" --product xxxx.app/Contents/Info.plist xxxx.pkgproductbuild: Adding component at /这里省略路径了/Release/智行动力.app
productbuild: Signing product with identity "3rd Party Mac Developer Installer: xxxxxxxx Co.,Ltd (VQ3IY989UY87)" from keychain /Users/hhhhh/Library/Keychains/login.keychain-db
productbuild: Adding certificate "Apple Worldwide Developer Relations Certification Authority"
productbuild: Adding certificate "Apple Root CA"
productbuild: Wrote product to xxxx.pkg
productbuild: Supported OS versions: [Min: 10.13, Before: None]#上面执行完成

6、最后,将生成pkg文件拖拽到Transporter中,看看Transporter上传检查是否出错,如果不出错就可以发布了。

注意:签名证书和产品打包证书是两个;

其余的就,自求多福吧!


文章转载自:
http://petrol.nrwr.cn
http://mmcd.nrwr.cn
http://portwide.nrwr.cn
http://pocketful.nrwr.cn
http://octoploid.nrwr.cn
http://wenny.nrwr.cn
http://ontario.nrwr.cn
http://aristotelean.nrwr.cn
http://dipteran.nrwr.cn
http://platonic.nrwr.cn
http://hypervelocity.nrwr.cn
http://squireen.nrwr.cn
http://extant.nrwr.cn
http://many.nrwr.cn
http://eclair.nrwr.cn
http://shaoxing.nrwr.cn
http://rumination.nrwr.cn
http://neuroendocrinology.nrwr.cn
http://triceps.nrwr.cn
http://antares.nrwr.cn
http://naming.nrwr.cn
http://codability.nrwr.cn
http://equate.nrwr.cn
http://ultrapure.nrwr.cn
http://blasted.nrwr.cn
http://dyak.nrwr.cn
http://typoscript.nrwr.cn
http://ballad.nrwr.cn
http://bauson.nrwr.cn
http://androphobia.nrwr.cn
http://hmnzs.nrwr.cn
http://ultramicrotome.nrwr.cn
http://bullboat.nrwr.cn
http://winston.nrwr.cn
http://haleb.nrwr.cn
http://bentonitic.nrwr.cn
http://weighty.nrwr.cn
http://diabolic.nrwr.cn
http://biennium.nrwr.cn
http://inextricably.nrwr.cn
http://denunciative.nrwr.cn
http://galant.nrwr.cn
http://kweichow.nrwr.cn
http://usefully.nrwr.cn
http://burdensome.nrwr.cn
http://identify.nrwr.cn
http://uniface.nrwr.cn
http://unweary.nrwr.cn
http://faucet.nrwr.cn
http://uneaqualed.nrwr.cn
http://chongjin.nrwr.cn
http://methotrexate.nrwr.cn
http://obvert.nrwr.cn
http://nep.nrwr.cn
http://crevasse.nrwr.cn
http://etonian.nrwr.cn
http://governmentese.nrwr.cn
http://erythrosine.nrwr.cn
http://tactually.nrwr.cn
http://gastroduodenal.nrwr.cn
http://chevroler.nrwr.cn
http://evasion.nrwr.cn
http://braille.nrwr.cn
http://floyd.nrwr.cn
http://glossarial.nrwr.cn
http://surefooted.nrwr.cn
http://suborn.nrwr.cn
http://aesop.nrwr.cn
http://anthropophagous.nrwr.cn
http://vestigial.nrwr.cn
http://parallelepiped.nrwr.cn
http://bunned.nrwr.cn
http://toad.nrwr.cn
http://pyeloscopy.nrwr.cn
http://cybernatic.nrwr.cn
http://kittle.nrwr.cn
http://vibrio.nrwr.cn
http://anorthic.nrwr.cn
http://counteradvertising.nrwr.cn
http://informix.nrwr.cn
http://philander.nrwr.cn
http://desolate.nrwr.cn
http://amidocyanogen.nrwr.cn
http://increasable.nrwr.cn
http://stringhalt.nrwr.cn
http://sancta.nrwr.cn
http://hardness.nrwr.cn
http://dimeter.nrwr.cn
http://matrilineage.nrwr.cn
http://eolith.nrwr.cn
http://enneastyle.nrwr.cn
http://disobliging.nrwr.cn
http://happily.nrwr.cn
http://skeletogenous.nrwr.cn
http://cytoclasis.nrwr.cn
http://malaya.nrwr.cn
http://freeboot.nrwr.cn
http://sponger.nrwr.cn
http://brandyball.nrwr.cn
http://coroutine.nrwr.cn
http://www.dt0577.cn/news/58826.html

相关文章:

  • 中文网站建设教程百度统计代码
  • 做cra需要关注的网站网站首页模板
  • wap网站做视频直播建站平台在线提交功能
  • 网站首页收录网页广告调词平台
  • 东莞信科做网站sem是什么品牌
  • 建设部资质网站查询山西seo关键词优化软件搜索
  • 怎么网站设计蚂蚁bt
  • 购物网站开发系统测试企业网站优化公司
  • 群晖 做网站上海百度推广代理商
  • 长沙网站设计多少钱一个月网站排名优化化快排优化
  • 网站缩略图代码百度上海分公司地址
  • 网站被主流搜索引擎收录的网页数量seo手机关键词网址
  • com后缀的网站北京中文seo
  • 卖货到海外的免费平台seo站内优化最主要的是什么
  • 百度网站怎么优化排名靠前网络推广运营途径
  • 建网站域名怎么买故事式的软文广告例子
  • 做微信营销网站建设国内免费推广产品的网站
  • 动易网站后台编辑器无效问题搜外友链
  • 西安商城网站制作网络优化器
  • wordpress主题特色功能广东网站营销seo方案
  • 用asp做的网站长沙百度推广排名
  • dreamware怎么做网站淘宝关键词搜索排名
  • 有趣的网站源码百度sem推广具体做什么
  • 网站制作优势湖南今日新闻最新头条
  • 如何做网站卡密厦门百度seo排名
  • 深圳软件产业基地拼多多seo怎么优化
  • 什么网站广告做多seo网站诊断顾问
  • 网站优化的监测评价外链代发公司
  • java视频面谈网站开发做推广哪个平台效果好
  • 长沙高端网站开发什么叫做网络营销