Posts

Post not yet marked as solved
0 Replies
701 Views
I have a watch app that I have been distributed for years. But on recent Xcode 15.0.1, I started having problem: Using a eligible provision profile, I started distribute app via TestFlight and App Store, and i got: Automatic signing cannot register bundle identifier "com.virtualgs.invaders.watchkitapp.watchkitextension". Automatic signing cannot register bundle identifiers with Apple. Register your bundle identifier on https://developer.apple.com/account and then try again. No profiles for 'com.virtualgs.invaders.watchkitapp.watchkitextension' were found Xcode couldn't find any iOS App Store provisioning profiles matching 'com.virtualgs.invaders.watchkitapp.watchkitextension'. But it has gone up for many years! Any ideas?
Posted
by limtc.
Last updated
.
Post not yet marked as solved
28 Replies
24k Views
I wanted to remove AdMob from my iOS app, so I remove all traces of AdMob, and make sure that info.plist does not have NSUserTrackingUsageDescription, no external framework used, and no traces of NSUserTrackingUsageDescription in my codes (global search in Xcode not found). However, previous version has setup App Privacy in AppStore Connect. Uploading a new build I can remove all entries in App Privacy except for one (?): Data Types - 1 data type collected from this app: Product Interaction And I cannot remove this one: when selecting not collecting info, I got this error message: Your app contains NSUserTrackingUsageDescription, indicating that you will request permission to track users. You must indicate which data types are tracking users. If this is incorrect, update your app binary and upload a new build to App Store Connect. What shall I do? And what is this Product Interaction tracking? (The rest can all be reset to not tracking except this one.)
Posted
by limtc.
Last updated
.
Post not yet marked as solved
2 Replies
913 Views
In WWDC standalone watch app talk, Apple mentioned that iPhone app is now optional.How do you submit a standalone watch app without the iPhone app?Have been asking in WatchKit forum and no answer for months. Thanks!
Posted
by limtc.
Last updated
.
Post not yet marked as solved
4 Replies
1.2k Views
Hi, I have an iPad app that has menus, like:  CommandGroup(replacing: .help) {                 Button("Help") { showHelp = true }                     .keyboardShortcut("/")  } They works fine in iPad and also if compiled to Mac Catalyst, but will crash on Apple Silicon Mac when selected the menu items with errors like: [General] -[_UIEditMenuInteractionMenuController propertyList]: unrecognized selector sent to instance 0x600000190540 I did not use storyboard and only use SwiftUI. Any suggestions? Note: of course the best solution is to compile to Mac Catalyst, but the app has some other issues when run in Mac Catalyst. So I can only release it as iPad app.
Posted
by limtc.
Last updated
.
Post not yet marked as solved
0 Replies
448 Views
Is ARKit for spatial computing for Vision Pro only? Or it works on exisiting ARKit hardware like iPhone and iPad? I found that all my existing ARKit apps do not work on Vision Pro simulator, thus I am interested to know whether I am rewriting my apps for Vision Pro only, or upgrade for existing platforms too?
Posted
by limtc.
Last updated
.
Post not yet marked as solved
2 Replies
1.5k Views
I am using the latest version of Xcode 15 beta 4 running on Intel iMac 2017. Even though I have selected Vision Pro as platform and simulator, it does not appeared. Does the simulator works on Intel?
Posted
by limtc.
Last updated
.
Post not yet marked as solved
4 Replies
6.1k Views
I downloaded with 2 simuator, and I got 3 files: Xcode_15_beta.xcdownloadmanifest and 2 dmg files Then what to do next? The Xcode_15_beta.xcdownloadmanifest cant be opened.
Posted
by limtc.
Last updated
.
Post not yet marked as solved
1 Replies
1k Views
Hi, When I put Toggle button and divider() in CommandGroup(replacing: .textFormatting) { Toggle("Toggle Toolbar", isOn: $toolbar).keyboardShortcut("T") Divider() } On macOS 12/13, the Toggle Button is simply display as a button (with no checkbox or other indicators), and Divider is not shown. Is this a bug or I need to add in some modifiers?
Posted
by limtc.
Last updated
.
Post not yet marked as solved
1 Replies
718 Views
If you set the alignment to center or right alignment, the text will fly to the left when editing. This works for iPhone/iPad but not Mac Catalyst. Is this a know bug? If yes is there a workaround?
Posted
by limtc.
Last updated
.
Post not yet marked as solved
1 Replies
861 Views
Localization works fine in macOS 13, but not in macOS 12 menu (still show English while in localized language). Is it possible to make it work in macOS 12?             CommandGroup(after: .appInfo) {     Button("About Company") { showAppsSheet = true }      } Tried setting the name in LocalizedStringKey then put in Button but does not work.
Posted
by limtc.
Last updated
.
Post not yet marked as solved
1 Replies
1.3k Views
I wish to support Mac with my iPhone/iPad app using Mac Catalyst. Our app shows widgets on iPhone/iPad home screen properly. Using Mac Catalyst is straight forward (except to exclude all ActivityKit codes). However, although the app shows up and work perfectly, I can't see the widgets in notification center. Separate compile the widget extensions show no errors but nothing is shown. Also tried build separately, drag into Applications folder, run the build and the widgets are not shown. Any suggestions? Using the Xcode 14.2 and macOS 13.1.
Posted
by limtc.
Last updated
.
Post not yet marked as solved
0 Replies
622 Views
In the process of converting our SwiftUI app to Mac Catalyst, we found that although the app works fine in macOS 13, it is very buggy in macOS 12 (menu does not get refreshed when enable/disable, color palette does not work properly, localized text does not show up in menu, etc). Is there release notes for Mac Catalyst running on different macOS releases? And how do we disable features that don't work on older OS? Thanks!
Posted
by limtc.
Last updated
.
Post not yet marked as solved
9 Replies
221k Views
After upgrading to macOS 10.13.4 and Xcode 9.3, my project now makes all my Provisioning Profile ineligible! They worked before upgrade.The error message for the distribution profile is:Provisioning profile "distribution profile name" doesn't include signing certificate "development certificate name"So I search through the forum,remove ALL items in keychain My Certificateredownload the distribution profile (double tap to install to Xcode)create new distribution profile (double tap to install to Xcode)recreate the Production certificate (double tap to install to Keychain)redownload the Development certificate (double tap to install to Keychain)So now my keychain has two production certificate (one is newly created), and one development certificate, and the error is still there. I found it weird that it asked for the development certificate in distribution profile? (I think this is the clue, but I don't know why)So now what should I do? Please help!
Posted
by limtc.
Last updated
.