iOS Question Error compiling code

Andrew Lindsay

Member
Licensed User
Longtime User
Hello, I get the following error when I compile the code. I have followed the tutorials (I think), but don't understand why it doesn't work.
B4X:
=== BUILD TARGET B4iProject OF PROJECT B4iProject WITH CONFIGURATION Release ===

Check dependencies
Code Sign error: Provisioning profile does not match bundle identifier: The provisioning profile specified in your build settings (“Development”) has an AppID of “com.AndrewLindsay.*” which does not match your bundle identifier “com.AndrewLindsay”.
CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 8.1'


Error: ** BUILD FAILED **


The following build commands failed:
	Check dependencies
(1 failure)
 

stevel05

Expert
Licensed User
Longtime User
You just need to add a suffix to your package name in the build configuration. So it should be something like:

com.AndrewLindsay.appname
 
Upvote 0
Top