Hi thereWhat's the difference between .pem et .p8 on the server ?I use PHP on my server by my host.
Post
Replies
Boosts
Views
Activity
I answer to myself.The error comes from using the automatic increment script of the Bundle version below. It copies the info.plist to the project.bundlePhase files, which creates a duplicate.Here is the script:#!/bin/bash
bN=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "$INFOPLIST_FILE")
bN=$((bN += 1))
bN=$(printf "%d" $bN)
/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $bN" "$INFOPLIST_FILE"This script is from Jeffrey Jackson at CoderWall.comNote: this script run correctly with a new app created with the New Build System, not with older one. (It's my case)HTH