参考文档:https://blog.csdn.net/denggun12345/article/details/80236008
1.将新工程打包 Product -> Archive 打包
//xxx表示项目名
2.右击show in finder -> xxx.xcarchive -> 右击显示包内容 -> Products -> Applications -> xxx
3.终端cd 到此xxx.app
4.终端执行 find . -name 'Assets.car' 命令
5.终端使用 assetutil 命令找到任何包含着 16-bit or P3 的资源文件, 对每个 Assets.car 之行以下命令 :
sudo xcrun --sdk iphoneos assetutil --info ./xxx.app/Assets.car> /Users/用户名/Desktop/Assets.json
./xxx.app/Assets.car 这个是执行步骤4得到的path
5、查找含有”DisplayGamut” : “P3”, “Encoding” : “ARGB-16″
网友评论