Developer Tools

RSS for tag

Ask questions about the tools you can use to build apps.

Posts under Developer Tools tag

200 Posts

Post

Replies

Boosts

Views

Activity

Apple Developer Account Enrollment Stalled
Good Day, I've applied for enrollment on the Developer iPhone App and was asked to upload company and identity documentation (which I did within 24 hours) and the enrollment has been stuck since. I reached out to support and they said to please call them as they need to speak to me on the phone, however I am in a region where phone support is not available (only email). I've subsequently replied to the email and said this to support and they closed the ticket. I've previously applied for enrollment on the developer.apple.com and that enrollment was approved but after 2 weeks of waiting the payment was never collected by Apple and support closed the enrollment and advised me to enroll on the mobile app as it allows Apple Pay which will collect the fee immediately after approval. However now the mobile app enrollment is stuck. Anyone been through this who can advise me on what to do to get this resolved ? My project is delayed by 2 months because of this.
1
0
62
2d
Parallax Previewer v2 crashes in macOS 26.4.1, Tahoe.
I can run v1 of Parallax Previewer just fine, but v2 pops up an error on open. In console I can see a crash log that states that CoreRe.framework is looking for _FigSTSCreate inside the system's MediaToolbox.framework. I guess Tahoe doesn't have that. Is there a new version coming that works on Tahoe? or a workaround? I couldn't find an existing discussion about this. thanks.
4
1
280
2d
CloudKit Query (and Dashboard) returns only a few records
When I query, an existing database with over 10,000 records from an Objective C app (i.e. CKQueryOperation) I get only N x 100 records returned where N varies each time between 0 and about 10 (i.e. never more than 1000 records and always an even multiple of 100). When I do a “Query Records” on the CloudKit Dashboard I get a similar number of pages of records downloaded (i.e. 0-10). If I tap “Query Records” multiple times I will get more pages of records until the full 10,000 are downloaded. This had been working fine until recently, both from the app and the Dashboard. There are multiple Record Types in the database. Only one Record Type is erroring. The other Record Types continue to work both from the app and the Dashboard. In particular, the Users Record Type has many many records and they all download to many pages with a single tap of “Query Records”. I have posted this to the Feedback Assistant under FB22358865. Here is my code: NSPredicate *predicate =[NSPredicate predicateWithFormat:@"modificationDate>%@",dateLastSynched]; CKRecordType theRecordName=[NSString stringWithString:@"Notices”]; // I also try this for @“Links” and @“Messages” and @“EventMessages" CKQuery *query = [[CKQuery alloc] initWithRecordType:theRecordName predicate:predicate]; CKQueryOperation *theOperation=[[CKQueryOperation alloc] initWithQuery:query]; [self startAQueryOperation:(CKQueryOperation *)theOperation theName:(NSString *)recordName]; -(void)startAQueryOperation:(CKQueryOperation *)theOperation theName:(NSString *)recordName{ theOperation.recordFetchedBlock=^(CKRecord *theRecord){ NSLog(@"XXXjust downloaded a %@",recordName); }; theOperation.queryCompletionBlock=^(CKQueryCursor *theCursor, NSError *error){ if(error){ NSLog(@"XXXerror %@",error); } if(theCursor){ CKQueryOperation *anotherOperation=[[CKQueryOperation alloc] initWithCursor:theCursor]; [self startAQueryOperation:anotherOperation theName:recordName]; } }; CKDatabase *publicDatabase = [[CKContainer defaultContainer] publicCloudDatabase]; [publicDatabase addOperation:theOperation]; } When I run this code in the app I get no “XXXerror” from the NSLogs. I get the expected number of “XXXjust downloaded a” EventMessages (435) and Messages (594) and Links (15) but I get varying amounts, 100 or 400 or 500 “xxjust downloaded a” for the Notices when I should get 10,118 records. Thinking that 10,000 records is too much, if I alter “dateLastSynched” for Notices I still get only 100 or 200, not the expected number. Note that the number is always a multiple of 100. This seems to be consistent with the typical number of records I get on the CloudKit dashboard each time I tap “Query Records”.
4
0
444
4d
Build plugin warnings not showing in issue navigator
With Xcode 26.5, I've switched from using SwiftLint in a "Run Script" phase to using the SwiftLintPlugins package and running it as a build plugin. This works fine on one Mac, in a small project, where the warnings from the build plugin show up in the issue navigator as expected. But on another Mac, in a large project, I can see the SwiftLint build plugin warnings in the build log but they don't appear in the Xcode issue navigator. Is there some Xcode setting that could influence this, or what else can I check?
0
0
52
4d
In Beijing for overlap with WWDC - access limited?
I will be in Beijing on a tour overlapping with the last 3 days of WWDC. There are likely to be at least a couple of 1-1 labs I'd like to attend as well as group forum sessions. I suddenly had the horrified thought that the Great China Firewall may interfere with either of these. Does anyone know how likely this is? Does the Developer app work there? Will be in a reasonable hotel and have Vodafone roaming on my phone. thanks
0
0
517
6d
Add Swift Package in Xcode
Hi, Overview I would like to add a Swift Package to my Xcode project. Problem In Xcode when I select Project > Package Dependencies and Press + button to add a dependency it keeps spinning and doesn't end Points to note: Xcode 26.5 (17F42) macOS 26.5 (25F71) This is a private GitHub repository I am able to clone the Swift Package URL on the command line. Xcode has the GitHub account I am able to push and pull code on that GitHub account using Xcode My failed attempt rm -rf ~/Library/Developer/Xcode/DerivedData rm -rf ~/Library/Caches/org.swift.swiftpm plutil -remove IDESwiftPackageAdditionAssistantRecentlyUsedPackages ~/Library/Preferences/com.apple.dt.Xcode.plist I have removed GitHub account in Xcode and added it again I am confused if I am missing something very obvious, any help on this is much appreciated. Questions Is there any workaround or way to fix this issue? Why does this take such a long time when I have a specific URL, either it needs to add it or return that the package is not found. Why is it searching?
2
0
138
1w
Logon to Mac OS with Dev Account which is Account Holder
I'm a solo developer and owner of my companies account. I'm trying to sign on to my Mac so I can use my developer account to get a certificate for wallet use and to select the correct developer account for applications in Xcode. I'm am brand new to all this so apologize if I'm missing the simple solution. I'm not able to edit the roles of my developer account but being an Admin I should already have all the necessary access...I think. I get an error when trying to logon as a work account: Searching for the long error doesn't provide a solution in the forum or through search engines. AI says to check the roles.
0
0
124
1w
Wireless Connection for Builds not possible
Hello Apple Developer Community, I’ve got a problem with the Xcode Build feature. Because when I would like to build / run my app, my iPhone won’t show up. I’ve already enabled Developer Mode and have set it up in Xcode and did the setup again. I don’t know what I can do next. Are there any possible solutions to this? Thanks for the help 😁. additional Information: Xcode Version: 26.5 Mac: MacBook Air M3 · macOS 26.5 iPhone: iPhone 16 · iOS 26.5
0
0
72
1w
Apple Developer Support emails are not being delivered
I’m experiencing an issue with Apple Developer Support communication. On the page Apple Developer Support Cases I can see updates and messages indicating that Apple Support specialists supposedly replied to my case. However, I never receive those emails in my inbox. The only emails that actually arrive to my Gmail account are automatic messages with the subject: “Thanks for submitting your support request” I checked: Spam folder Promotions/Social tabs Gmail filters Blocked addresses But there are still no replies from support specialists. Because of this, I cannot continue communication with support. Has anyone experienced the same issue? Is there a specific Apple domain/email address that should be whitelisted? Apple Support team, please contact me directly.
1
0
121
1w
Zooming in Storyboards/XIBs for macOS App?
I've found several references for this functionality being removed, but no viable workaround. When I'm trying to fine tune a layout the constraint lines, boundary boxes, etc. get in the way and I can't see what I'm doing. For doing pixel-perfect layouts in a storyboard it gets really tedious. This borders on an accessibility issue. Does anyone know when or if this is ever coming? It works fine with iOS apps.
1
0
159
2w
Developer Subscription enrollment not completing.
Hello guys. It's been 2 weeks since I paid for my developer account and I haven't received access to the developer tools yet. I finished all the process and still nothing, the money has also been charged from my bank account. Also I contacted https://developer.apple.com/contact/ but I haven't received any answer from them. I don't know how to proceed.
1
0
111
2w
ScribeMe’s removal from App Store
My Apple Developer account was recently terminated, which resulted in the removal of ScribeMe from the App Store without further notice. This is not just about an app disappearing from a store. Thousands of blind and visually impaired users rely on ScribeMe every day for independence, education, and daily life. ScribeMe helps users understand photos, documents, presentations, charts, diagrams, unfamiliar environments, and more through AI-powered accessibility tools. For many users, it is not a convenience, it is a necessity. When accessibility apps are suddenly removed, the impact goes far beyond business. We are effectively taking away tools that help blind people study independently, access visual information, and participate more equally in education and society. Many users depended on this app daily, and its sudden removal has left people without an important accessibility tool they relied on. We respectfully ask for someone from Apple to manually review the situation and carefully examine why the account termination occurred. We made every effort to follow all App Store guidelines, and we are fully willing to cooperate with Apple and quickly fix or address any issue that may have caused this situation. Accessibility-focused apps deserve human review and consideration because of the real impact they have on people’s lives. Accessibility is not a luxury, it is a necessity. We hope accessibility remains at the center of these decisions.
9
11
887
2w
How do I cancel my developer account
I have my primary apple account associated with email A and I created a separate email B for my app. I then created an apple developer account using email B and paid for the $99 subscription. Note that I enrolled in the developer program through the Apple Developer App on my phone which is signed into account A. Two months ago, I did not want my subscription to renew, so I tried visiting this link to can cancel it https://developer.apple.com/account#MembershipDetailsCard Unintuitively, this does not let me modify my membership participation, only contact details. I then tried canceling the subscriptions here by checking my subscriptions for both account A and account B https://account.apple.com/account/manage/section/subscriptions Unintuitively, I saw the developer subscription for the account associated with email A, not B, so I canceled it there. Today, I see the subscription as inactive and neither account A or B have an active developer subscription. As an added measure, I removed all saved billing information from account B so any subscription associated with that account shouldn't be able to charge me. Yesterday I received an email and credit card statement saying I was charged $99 for renewal. This seems to be a serious privacy and security issue given a. A nonexisting subscription on account B charged a credit card that account B should not have access to b. There is no indication whatsoever that account A and B are linked on the apple account page. If they are in fact linked since I enrolled in the developer program on a phone belonging to account A, it ought to be clearly shown on account A that this is the case since that is what I'm being billed for. c. What is the source of truth for apple subscriptions? Clearly not the subscriptions page owned by account A or account B in this case. I expect a full refund for this
1
0
105
2w
"Unable to find module dependency" with custom PRODUCT_MODULE_NAME
Hi! Here is a brief introduction at first. I am developing a framework and our project has following structure: All frameworks are static ones. PublicAPI framework contains the only declarations that are visible to users, while ModuleX frameworks are internal modules. During build process we archive all targets and libtool all internal module binaries into PublicAPI one. This way we distribute our framework as a single xcframework package and hide all internal modules from users. Here is the problem part. All these frameworks exist in separate projects that have single static library target. I want to add new targets with different settings, say SWIFT_ACTIVE_COMPILATION_CONDITIONS or else. So project would look like this Also I would like both regular and extended targets to build frameworks with same module name, so that neither users (that use PublicAPI framework) nor I would have to change imports in my code. My idea was to set PRODUCT_MODULE_NAME in extended targets to the same value as in regular ones. But when I build PublicAPIExtended target I get an error Unable to find module dependency 'Module1' although derived data contains Module1Extended.framework with Module1 module inside. What did I do wrong? Is it possible to build project like this at all? And another thing - I also tried to build a scheme containing both PublicAPI and PublicAPIExtended targets and got different error even prior to build: error: Multiple commands produce '<ExtractAppIntentsMetadata Path(_str: "/Users/antonprotko/Library/Developer/Xcode/DerivedData/test-acncglphufkosyhjzbwrbzalsnlh/Build/Products/Debug") bar/Metadata.appintents>' note: Target 'bar copy' (project 'bar'): ExtractAppIntentsMetadata note: Target 'bar' (project 'bar'): ExtractAppIntentsMetadata Can I fix it somehow? Here is example project with similar targets - foo/foo_copy and bar/bar_copy share the same sources with different compilation conditions. bar targets depend on foo targets and building bar_copy fails with Unable to find module dependency: 'foo' https://drive.google.com/file/d/1Cj5cIw8U0LJ5Xt9ZnhbKIo240kbrizLE/view?usp=sharing
0
1
195
2w
Migration From Individual To Organization
Hello, I initiated my request to migrate from individual to organization account more than a week back. I submitted all the documents but still there is no update. Can you please help me with this and expedite the process. Also if you can give me visibility on the state where its stuck at that would be great. My enrollment ID is NL4N2SPXQB
0
0
108
2w
I am stuck at "Purchase your membership" for weeks
Good afternoon! I registered a developer account. I paid for the account. It said, "Please wait 48 hours." The money was debited. Then I received a request to send a document. I sent my document, but I still haven't received a response. It's been more than a week. Then I submitted a support ticket, but I still haven't received a response. Ticket number 20000112618805. Please help me solve my problem.
1
0
146
2w
Tags and Color folder
I’m delighted with the introduction of new color folders. Although, I can’t help but wonder why we still need both color folders and tags. Aren’t the color folders sufficient for our needs?
Replies
1
Boosts
0
Views
691
Activity
2h
Apple Developer Account Enrollment Stalled
Good Day, I've applied for enrollment on the Developer iPhone App and was asked to upload company and identity documentation (which I did within 24 hours) and the enrollment has been stuck since. I reached out to support and they said to please call them as they need to speak to me on the phone, however I am in a region where phone support is not available (only email). I've subsequently replied to the email and said this to support and they closed the ticket. I've previously applied for enrollment on the developer.apple.com and that enrollment was approved but after 2 weeks of waiting the payment was never collected by Apple and support closed the enrollment and advised me to enroll on the mobile app as it allows Apple Pay which will collect the fee immediately after approval. However now the mobile app enrollment is stuck. Anyone been through this who can advise me on what to do to get this resolved ? My project is delayed by 2 months because of this.
Replies
1
Boosts
0
Views
62
Activity
2d
Parallax Previewer v2 crashes in macOS 26.4.1, Tahoe.
I can run v1 of Parallax Previewer just fine, but v2 pops up an error on open. In console I can see a crash log that states that CoreRe.framework is looking for _FigSTSCreate inside the system's MediaToolbox.framework. I guess Tahoe doesn't have that. Is there a new version coming that works on Tahoe? or a workaround? I couldn't find an existing discussion about this. thanks.
Replies
4
Boosts
1
Views
280
Activity
2d
CloudKit Query (and Dashboard) returns only a few records
When I query, an existing database with over 10,000 records from an Objective C app (i.e. CKQueryOperation) I get only N x 100 records returned where N varies each time between 0 and about 10 (i.e. never more than 1000 records and always an even multiple of 100). When I do a “Query Records” on the CloudKit Dashboard I get a similar number of pages of records downloaded (i.e. 0-10). If I tap “Query Records” multiple times I will get more pages of records until the full 10,000 are downloaded. This had been working fine until recently, both from the app and the Dashboard. There are multiple Record Types in the database. Only one Record Type is erroring. The other Record Types continue to work both from the app and the Dashboard. In particular, the Users Record Type has many many records and they all download to many pages with a single tap of “Query Records”. I have posted this to the Feedback Assistant under FB22358865. Here is my code: NSPredicate *predicate =[NSPredicate predicateWithFormat:@"modificationDate>%@",dateLastSynched]; CKRecordType theRecordName=[NSString stringWithString:@"Notices”]; // I also try this for @“Links” and @“Messages” and @“EventMessages" CKQuery *query = [[CKQuery alloc] initWithRecordType:theRecordName predicate:predicate]; CKQueryOperation *theOperation=[[CKQueryOperation alloc] initWithQuery:query]; [self startAQueryOperation:(CKQueryOperation *)theOperation theName:(NSString *)recordName]; -(void)startAQueryOperation:(CKQueryOperation *)theOperation theName:(NSString *)recordName{ theOperation.recordFetchedBlock=^(CKRecord *theRecord){ NSLog(@"XXXjust downloaded a %@",recordName); }; theOperation.queryCompletionBlock=^(CKQueryCursor *theCursor, NSError *error){ if(error){ NSLog(@"XXXerror %@",error); } if(theCursor){ CKQueryOperation *anotherOperation=[[CKQueryOperation alloc] initWithCursor:theCursor]; [self startAQueryOperation:anotherOperation theName:recordName]; } }; CKDatabase *publicDatabase = [[CKContainer defaultContainer] publicCloudDatabase]; [publicDatabase addOperation:theOperation]; } When I run this code in the app I get no “XXXerror” from the NSLogs. I get the expected number of “XXXjust downloaded a” EventMessages (435) and Messages (594) and Links (15) but I get varying amounts, 100 or 400 or 500 “xxjust downloaded a” for the Notices when I should get 10,118 records. Thinking that 10,000 records is too much, if I alter “dateLastSynched” for Notices I still get only 100 or 200, not the expected number. Note that the number is always a multiple of 100. This seems to be consistent with the typical number of records I get on the CloudKit dashboard each time I tap “Query Records”.
Replies
4
Boosts
0
Views
444
Activity
4d
iOS and Apple touchscreen
would like to enable Apple touschscreens to measure a set of bio parameteres through NDR (negative differential resistance) at the finger tip, whereas the proprietary measurement therapeutically channels out current out of the finger
Replies
1
Boosts
0
Views
189
Activity
4d
Build plugin warnings not showing in issue navigator
With Xcode 26.5, I've switched from using SwiftLint in a "Run Script" phase to using the SwiftLintPlugins package and running it as a build plugin. This works fine on one Mac, in a small project, where the warnings from the build plugin show up in the issue navigator as expected. But on another Mac, in a large project, I can see the SwiftLint build plugin warnings in the build log but they don't appear in the Xcode issue navigator. Is there some Xcode setting that could influence this, or what else can I check?
Replies
0
Boosts
0
Views
52
Activity
4d
In Beijing for overlap with WWDC - access limited?
I will be in Beijing on a tour overlapping with the last 3 days of WWDC. There are likely to be at least a couple of 1-1 labs I'd like to attend as well as group forum sessions. I suddenly had the horrified thought that the Great China Firewall may interfere with either of these. Does anyone know how likely this is? Does the Developer app work there? Will be in a reasonable hotel and have Vodafone roaming on my phone. thanks
Replies
0
Boosts
0
Views
517
Activity
6d
Add Swift Package in Xcode
Hi, Overview I would like to add a Swift Package to my Xcode project. Problem In Xcode when I select Project > Package Dependencies and Press + button to add a dependency it keeps spinning and doesn't end Points to note: Xcode 26.5 (17F42) macOS 26.5 (25F71) This is a private GitHub repository I am able to clone the Swift Package URL on the command line. Xcode has the GitHub account I am able to push and pull code on that GitHub account using Xcode My failed attempt rm -rf ~/Library/Developer/Xcode/DerivedData rm -rf ~/Library/Caches/org.swift.swiftpm plutil -remove IDESwiftPackageAdditionAssistantRecentlyUsedPackages ~/Library/Preferences/com.apple.dt.Xcode.plist I have removed GitHub account in Xcode and added it again I am confused if I am missing something very obvious, any help on this is much appreciated. Questions Is there any workaround or way to fix this issue? Why does this take such a long time when I have a specific URL, either it needs to add it or return that the package is not found. Why is it searching?
Replies
2
Boosts
0
Views
138
Activity
1w
Logon to Mac OS with Dev Account which is Account Holder
I'm a solo developer and owner of my companies account. I'm trying to sign on to my Mac so I can use my developer account to get a certificate for wallet use and to select the correct developer account for applications in Xcode. I'm am brand new to all this so apologize if I'm missing the simple solution. I'm not able to edit the roles of my developer account but being an Admin I should already have all the necessary access...I think. I get an error when trying to logon as a work account: Searching for the long error doesn't provide a solution in the forum or through search engines. AI says to check the roles.
Replies
0
Boosts
0
Views
124
Activity
1w
Enrollment Stuck in Processing
I've been stuck on "enrollment processing" for several days now on our account dashboard. From friends, I've heard that the developer account enrollment is usually 24 hours after you have the DUNS number. Curious why this is taking so long or if there is something we are missing. Any thoughts or tips would be helpful!
Replies
0
Boosts
0
Views
54
Activity
1w
Wireless Connection for Builds not possible
Hello Apple Developer Community, I’ve got a problem with the Xcode Build feature. Because when I would like to build / run my app, my iPhone won’t show up. I’ve already enabled Developer Mode and have set it up in Xcode and did the setup again. I don’t know what I can do next. Are there any possible solutions to this? Thanks for the help 😁. additional Information: Xcode Version: 26.5 Mac: MacBook Air M3 · macOS 26.5 iPhone: iPhone 16 · iOS 26.5
Replies
0
Boosts
0
Views
72
Activity
1w
Apple Developer Support emails are not being delivered
I’m experiencing an issue with Apple Developer Support communication. On the page Apple Developer Support Cases I can see updates and messages indicating that Apple Support specialists supposedly replied to my case. However, I never receive those emails in my inbox. The only emails that actually arrive to my Gmail account are automatic messages with the subject: “Thanks for submitting your support request” I checked: Spam folder Promotions/Social tabs Gmail filters Blocked addresses But there are still no replies from support specialists. Because of this, I cannot continue communication with support. Has anyone experienced the same issue? Is there a specific Apple domain/email address that should be whitelisted? Apple Support team, please contact me directly.
Replies
1
Boosts
0
Views
121
Activity
1w
Zooming in Storyboards/XIBs for macOS App?
I've found several references for this functionality being removed, but no viable workaround. When I'm trying to fine tune a layout the constraint lines, boundary boxes, etc. get in the way and I can't see what I'm doing. For doing pixel-perfect layouts in a storyboard it gets really tedious. This borders on an accessibility issue. Does anyone know when or if this is ever coming? It works fine with iOS apps.
Replies
1
Boosts
0
Views
159
Activity
2w
Developer Subscription enrollment not completing.
Hello guys. It's been 2 weeks since I paid for my developer account and I haven't received access to the developer tools yet. I finished all the process and still nothing, the money has also been charged from my bank account. Also I contacted https://developer.apple.com/contact/ but I haven't received any answer from them. I don't know how to proceed.
Replies
1
Boosts
0
Views
111
Activity
2w
ScribeMe’s removal from App Store
My Apple Developer account was recently terminated, which resulted in the removal of ScribeMe from the App Store without further notice. This is not just about an app disappearing from a store. Thousands of blind and visually impaired users rely on ScribeMe every day for independence, education, and daily life. ScribeMe helps users understand photos, documents, presentations, charts, diagrams, unfamiliar environments, and more through AI-powered accessibility tools. For many users, it is not a convenience, it is a necessity. When accessibility apps are suddenly removed, the impact goes far beyond business. We are effectively taking away tools that help blind people study independently, access visual information, and participate more equally in education and society. Many users depended on this app daily, and its sudden removal has left people without an important accessibility tool they relied on. We respectfully ask for someone from Apple to manually review the situation and carefully examine why the account termination occurred. We made every effort to follow all App Store guidelines, and we are fully willing to cooperate with Apple and quickly fix or address any issue that may have caused this situation. Accessibility-focused apps deserve human review and consideration because of the real impact they have on people’s lives. Accessibility is not a luxury, it is a necessity. We hope accessibility remains at the center of these decisions.
Replies
9
Boosts
11
Views
887
Activity
2w
How do I cancel my developer account
I have my primary apple account associated with email A and I created a separate email B for my app. I then created an apple developer account using email B and paid for the $99 subscription. Note that I enrolled in the developer program through the Apple Developer App on my phone which is signed into account A. Two months ago, I did not want my subscription to renew, so I tried visiting this link to can cancel it https://developer.apple.com/account#MembershipDetailsCard Unintuitively, this does not let me modify my membership participation, only contact details. I then tried canceling the subscriptions here by checking my subscriptions for both account A and account B https://account.apple.com/account/manage/section/subscriptions Unintuitively, I saw the developer subscription for the account associated with email A, not B, so I canceled it there. Today, I see the subscription as inactive and neither account A or B have an active developer subscription. As an added measure, I removed all saved billing information from account B so any subscription associated with that account shouldn't be able to charge me. Yesterday I received an email and credit card statement saying I was charged $99 for renewal. This seems to be a serious privacy and security issue given a. A nonexisting subscription on account B charged a credit card that account B should not have access to b. There is no indication whatsoever that account A and B are linked on the apple account page. If they are in fact linked since I enrolled in the developer program on a phone belonging to account A, it ought to be clearly shown on account A that this is the case since that is what I'm being billed for. c. What is the source of truth for apple subscriptions? Clearly not the subscriptions page owned by account A or account B in this case. I expect a full refund for this
Replies
1
Boosts
0
Views
105
Activity
2w
"Unable to find module dependency" with custom PRODUCT_MODULE_NAME
Hi! Here is a brief introduction at first. I am developing a framework and our project has following structure: All frameworks are static ones. PublicAPI framework contains the only declarations that are visible to users, while ModuleX frameworks are internal modules. During build process we archive all targets and libtool all internal module binaries into PublicAPI one. This way we distribute our framework as a single xcframework package and hide all internal modules from users. Here is the problem part. All these frameworks exist in separate projects that have single static library target. I want to add new targets with different settings, say SWIFT_ACTIVE_COMPILATION_CONDITIONS or else. So project would look like this Also I would like both regular and extended targets to build frameworks with same module name, so that neither users (that use PublicAPI framework) nor I would have to change imports in my code. My idea was to set PRODUCT_MODULE_NAME in extended targets to the same value as in regular ones. But when I build PublicAPIExtended target I get an error Unable to find module dependency 'Module1' although derived data contains Module1Extended.framework with Module1 module inside. What did I do wrong? Is it possible to build project like this at all? And another thing - I also tried to build a scheme containing both PublicAPI and PublicAPIExtended targets and got different error even prior to build: error: Multiple commands produce '<ExtractAppIntentsMetadata Path(_str: "/Users/antonprotko/Library/Developer/Xcode/DerivedData/test-acncglphufkosyhjzbwrbzalsnlh/Build/Products/Debug") bar/Metadata.appintents>' note: Target 'bar copy' (project 'bar'): ExtractAppIntentsMetadata note: Target 'bar' (project 'bar'): ExtractAppIntentsMetadata Can I fix it somehow? Here is example project with similar targets - foo/foo_copy and bar/bar_copy share the same sources with different compilation conditions. bar targets depend on foo targets and building bar_copy fails with Unable to find module dependency: 'foo' https://drive.google.com/file/d/1Cj5cIw8U0LJ5Xt9ZnhbKIo240kbrizLE/view?usp=sharing
Replies
0
Boosts
1
Views
195
Activity
2w
Migration From Individual To Organization
Hello, I initiated my request to migrate from individual to organization account more than a week back. I submitted all the documents but still there is no update. Can you please help me with this and expedite the process. Also if you can give me visibility on the state where its stuck at that would be great. My enrollment ID is NL4N2SPXQB
Replies
0
Boosts
0
Views
108
Activity
2w
I am stuck at "Purchase your membership" for weeks
Good afternoon! I registered a developer account. I paid for the account. It said, "Please wait 48 hours." The money was debited. Then I received a request to send a document. I sent my document, but I still haven't received a response. It's been more than a week. Then I submitted a support ticket, but I still haven't received a response. Ticket number 20000112618805. Please help me solve my problem.
Replies
1
Boosts
0
Views
146
Activity
2w
Add for review 'save" btn is not working when select build
I set up all the App Store details, including support info and other required information, but I’m having an issue when adding a build and trying to save. The Save button turns red, and I’m not sure why. It’s not showing what I’m missing in the setup.
Replies
2
Boosts
0
Views
181
Activity
2w