Posts

Post not yet marked as solved
2 Replies
5.5k Views
Because my app requires the Network Multicasting entitlement, I am required to change to use manual signing of my (already published) app. I've generated the profile and double checked that all of the entitlements are included in the profile. However, I'm getting this error when trying to run my app : *** requires a provisioning profile with the Associated Domains, App Groups, Inter-App Audio, iCloud, and Push Notifications features. Select a provisioning profile in the Signing & Capabilities editor. I've regenerated the profile multiple times, restarted Xcode, and unchecked and checked all the entitlement boxes to try to reset them to no avail. Again, I am required to use manual signing, so please don't suggest that I check the "automatically manage signing" box. :) Thanks in advance.
Posted
by benkamen.
Last updated
.
Post not yet marked as solved
0 Replies
214 Views
I'm having a problem where the iOS simulators are not showing up for a certain target, but are showing up for others within the same workspace. I've checked that the deployment target is compatible with my simulator versions. I've tried re-installing Xcode, restarting the computer, cleaning the build folder, deleting DerivedData, and various other superstitious activities with no luck. I've also tried reverting to old versions of the project to see where things went wrong, but haven't been able to get them to appear that way either, though I know they were working previously. The one thing that changed recently that may be relevant is that I had to switch to using manual provisioning profiles for the target, since it uses the multicast networking entitlement. However, removing that entitlement and reverting to automatic signing doesn't fix the issue either. Any advice is much appreciated.
Posted
by benkamen.
Last updated
.
Post not yet marked as solved
0 Replies
244 Views
My app is crashing for a user with the error `SQLite error code:11`After a lot of poking around, it looks like their data base got corrupted during migration, as there are a bunch of extra files in the database folder.They look like this :.modelName.sqlite.migrationdestination_xxxxx-shm.modelName.sqlite.migrationdestination_xxxxx-wal.modelName.sqlite.migrationdestination_xxxxxIt has also created a bunch of `..modelName_SUPPORT_transsrc_xxxxx/EXTERNAL_DATA/xxxx` files that share similar names to the still exisitng files that are present in a non-corrupted database.My questions : 1 ) What causes this to happen? My assumption is that the app was quit mid-migration. 2 ) After this happens, how can I safely fix it and re-start the migration to avoid data loss.
Posted
by benkamen.
Last updated
.
Post not yet marked as solved
2 Replies
566 Views
I'm trying to figure out how to create an AUParameter that stores a string as its value, rather than a number.For example, if I wanted to store the name of a sample as a parameter.AUValue appears to always be a float, so what would be the proper way to do this?Thanks in advance for any help!
Posted
by benkamen.
Last updated
.