any chance this is added to a new Projucer version? And if yes, how can I do that?
I tried to use the Custom PList feature inside Xcode(iOS) export target of Projucer by writing this:
<plist>
<dict>
<key>CFBundleIdentifier</key>
<string>com.mycompany.myproductios</string>
</dict>
</plist>
It works (overrides the CFBundleIdentifier
key inside the PList for the Standalone App and the AUv3 App Extension) but with some issues:
- it uses the same bundle id for both apps (standalone + AUv3) which is a problem. As I’ve read before here in the forum, if the Standalone app bundle id is
com.mycompany.myproduct
, the AUv3 app bundle id has to be com.mycompany.myproduct.myproductAUv3
. This is handled perfectly from the Projucer, but not if you use the Custom PList.
- The bundle id is not been modified perfectly everywhere but I cannot specify where is the problem. I can confirm it though because if I look at the automatic provisioning profile that Xcode generates, it includes the bundle id that is specified in the general setting of my
.jucer
project and not the one i specify in the Custom PList, although the bundle id has changed in xcode’s info for target Standalone Plugin and AUv3 AppExtension.