Developer Program

RSS for tag

Create and deliver software for users around the world on Apple platforms using the the tools, resources, and support included with Apple Developer Program membership.

Developer Program Documentation

Posts under Developer Program tag

543 Posts
Sort by:
Post not yet marked as solved
0 Replies
10 Views
Hi, i can't get through to support. The call back won't accept my mobile phone as it's registered to a personal account. I've tried my internet phone number, but the call back keeps failing, presumably because there's an extra step with my RingCentral internet number where i have to press 1 to accept the call. I've tried to use the email form, but this does not send my message, i get a small blue circle spinning. I've tried to use Safari and Chrome with the same result. I can't find a number to call anywhere or a direct email. I understand that i could register a different number, bu tthis is not a long-term solution. Are there any other options so i can complete my enrolment?!
Posted
by
Post not yet marked as solved
2 Replies
65 Views
Good evening, I'm trying to deploy an extremely simple Python QT app to the app store: it's roughly ~10 lines of code that shows a window containing a"Hello, world!" message. This seemingly trivial task of deploying a "Hello World" app to the store has been extremely difficult, perhaps because of my lack of familiarity with the Apple ecosystem. I'd like to demonstrate all of the steps I've taken, my current understanding of deployments, and what the problems are. Project files Here's the code for the app (in a file located at src2/test_app/app.py). import os, sys from PySide2.QtWidgets import * class MainWindow(QMainWindow): def __init__(self, *args, **kwargs): super(MainWindow, self).__init__(*args, **kwargs) self.setCentralWidget(QLabel("Hello, world!")) if __name__ == '__main__': os.environ["QT_MAC_WANTS_LAYER"] = "1" app = QApplication(sys.argv) window = MainWindow() window.show() app.exec_() Furthermore, I've created an assets folder which contains an icon.icns file and I also created a Pyinstaller config/test_app.spec file to bundle this app into a testapp.app package: block_cipher = None added_files = [ ('../assets', 'assets') ] a = Analysis( ['../src2/test_app/app.py'], pathex=[], binaries=[], datas=added_files, hiddenimports=[], hookspath=[], hooksconfig={}, runtime_hooks=[], excludes=[], win_no_prefer_redirects=False, win_private_assemblies=False, cipher=block_cipher, noarchive=False ) pyz = PYZ( a.pure, a.zipped_data, cipher=block_cipher ) exe = EXE( pyz, a.scripts, a.binaries, a.zipfiles, a.datas, [], name='testapp', debug=False, bootloader_ignore_signals=False, strip=False, upx=True, upx_exclude=[], runtime_tmpdir=None, console=True, disable_windowed_traceback=False, target_arch=None, codesign_identity=None, entitlements_file=None, icon='../assets/64.icns' ) coll = COLLECT( exe, a.binaries, a.zipfiles, a.datas, strip=False, upx=True, upx_exclude=[], name='app' ) app = BUNDLE( coll, name='testapp.app', icon='../assets/icon.icns', bundle_identifier='com.stormbyte.test-app.pkg', info_plist={ 'NSPrincipalClass': 'NSApplication', 'NSAppleScriptEnabled': False, 'LSBackgroundOnly': False, 'LSApplicationCategoryType': 'public.app-category.utilities', 'NSRequiresAquaSystemAppearance': 'No', 'CFBundlePackageType': 'APPL', 'CFBundleSupportedPlatforms': ['MacOSX'], 'CFBundleIdentifier': 'com.stormbyte.test-app.pkg', 'CFBundleVersion': '0.0.1', } ) In addition, I have an config/entitlements.plist file, containing all of the necessary information for binaries built by pyinstaller: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <!-- These are required for binaries built by PyInstaller --> <key>com.apple.security.cs.allow-unsigned-executable-memory</key> <true/> <key>com.apple.security.cs.disable-library-validation</key> <true/> <key>com.apple.security.app-sandbox</key> <true/> </dict> </plist> This entitlements file is apparently necessary for pyinstaller to run things on Mac successfully, which is why I included it. Building the .APP I am able to build this app with: pyinstaller \ --noconfirm \ --log-level WARN \ --distpath '/Users/nikolay/Desktop/projects/cling_wrap/dist' \ --workpath '/Users/nikolay/Desktop/projects/cling_wrap/build' \ './config/test_app.spec' This creates a testapp.app file in my dist folder and the file icon I've designated appears just as I've intended. Codesigning the .APP binaries Next, I am able to use the codesign tool to sign all of the files that are part of the testapp.app I've just created. codesign \ -vvv \ --strict \ --deep \ --force \ --timestamp \ --options runtime \ --entitlements './config/entitlements.plist' \ --sign "Developer ID Application: Nikolay ***** (Z57YJ*****)" \ '/Users/nikolay/Desktop/projects/cling_wrap/dist/testapp.app' This successfully executes. Building the .PKG Installer Next, I am able to use productbuild to create a .PKG file, which will allow a user to install the app: productbuild \ --version '0.0.1' \ --sign "Developer ID Installer: Nikolay **** (Z57YJ*****)" \ --component '/Users/nikolay/Desktop/projects/cling_wrap/dist/testapp.app' \ /Applications testapp.pkg This successfully outputs: ... productbuild: Adding certificate "Developer ID Certification Authority" productbuild: Adding certificate "Apple Root CA" productbuild: Wrote product to testapp.pkg When I attempt to run this installer, everything works. I can even see the app installed in my Applications folder, and I can double-click and run it: With this confirmed, I am ready to run the notarization & stapling process prior to submitting my app to the App Store. I run notarization using the xcrun tool: xcrun altool \ --notarize-app \ --primary-bundle-id com.stormbyte.test-app.pkg \ --username=*****@gmail.com \ --password **** \ --file '/Users/nikolay/Desktop/projects/cling_wrap/testapp.pkg' Which outputs: No errors uploading '/Users/nikolay/Desktop/projects/cling_wrap/testapp.pkg'. RequestUUID = c40ebde4-dcd1-*********** I then receive an e-mail from Apple telling me that the notorization process has been successful: Next, I run the stapler tool: xcrun stapler staple '/Users/nikolay/Desktop/projects/cling_wrap/testapp.pkg' Which is also successful. Finally, I attempt to use Transporter to upload my app to the store but this happens: It says that the icon failed (when it clearly exists and is recognized by Mac?!!) and that the signature is invalid? Am I using the incorrect certificates for distribution to the App store? Thanks!
Posted
by
Post not yet marked as solved
1 Replies
38 Views
it really weird. I can't add device because it is grayed out and can't add more uuid. I checked Continue button but it says as first pic, I can add more 45 iPhone but + button is still grayed out
Posted
by
Post not yet marked as solved
1 Replies
61 Views
Hi! I renewed my apple developer account using the Apple developer app for iPad. I made the ~100 euro in-app payment after which it keeps telling me that I still need to renew my membership. By pressing the pay button again, it says I already have an active subscription. Going to the developer.apple.com website, I see a notification about going to the app store connect to agree with the new terms. Arriving at the app store connect website, it tells me to go back to the developer.apple.com website to accept the new terms. They keep sending me back and forward without actually allowing me to do anything. After a few days all websites/app still say I have to either renew my subscription or to accept the new terms. However, they all point to use one of the other tools or in case of the app it tells me I need to both pay and that I already paid. I am part of multiple teams, but I double checked that this problem is for one specific team. In the attachments you will find screenshots of all tools. I hope someone can help me out with this. Apple hasn't responded to any of my direct inquiries and they don't even pick up the phone. App store connect: Developer.apple.com: iPad app:
Posted
by
Post not yet marked as solved
0 Replies
51 Views
Dear Team, Please note that i had submit request for create apple account since 15May2022, still under reviewing until now , how much this process will take ? i contact support over email many times without proper action they just take time.
Posted
by
Post not yet marked as solved
0 Replies
70 Views
I have been facing a very stressful issue for the past couple of days. I was invited to be part of a developer team in hope to be able to build react native iOS apps, the new team fails to show up in my XCODE and expo-cli throws an error "You have no team associated with your Apple account, cannot proceed" Does it mean that I can't make React native Archive build as an invited developer ? That I can only build IOS apps only if I am the sole owner of the paid apple developer account? Will really appreciate any help I can get.
Posted
by
Post not yet marked as solved
1 Replies
74 Views
I did not save Private Keys. I lost Mac profile and had to reset my Mac Machine. So after this, my Developer ID certs are not working and my account reached limit of certificates. Now only left option for me is to delete or Revoke Developer ID certs. Apple support replied to my email saying that they can't revoke and approach Apple forums for help. Please advise. Since from 3 weeks, I have been struggling to get this resolved. Thanks, Anand
Posted
by
Post not yet marked as solved
1 Replies
61 Views
Each time i do something it tells me to agree to the developer terms however when i do it says i have already done this however the page keeps poping up so im now in an deadlock, does anyone have any advice.
Posted
by
Post not yet marked as solved
2 Replies
142 Views
I have been trying to enroll in apple developer account as individual but i don’t understand why apple is so complicated in this case in all situations. The first thing apple they wont show some good user experience after paying the money as account status will be pending forever and it will shows that you have to pay even when the money has been conducted, which in somehow you will have doubts and you will need to contact support which the worst thing ever you will face in your entire life. Apple developer support 🤮, this is the worst thing ever will happen to you if you had to deal with them, as I mentioned above that my account was pending and asking to submit money for many days after the money has been conducted so i have to contact developer support through email first and the response was super slow and in the end i never got response until i had to request support through call. Tbh, apple support for normal users is super good and very helpful but when it comes to developer support, it is completely the opposite of that as we do not pay for account as how normal customers paying for products. My case was that the enrollment region different than the region for my issued ID, So support agent had refunded the money and canceled my enrollment and asked me to submit again after changing the region from apple id account. I have done what has been requested and i submitted a new enrollment and the the same process above it happened again and then i have been told that address is not same as address in ID which i was 100% sure that i have changed it but then after that i have to contact support and they told me we don't know why but this is the system showing us the old address so we are sure we did some changes now so will issue refund and send submit enrollment again. refund it takes up to 5 days to be refunded As a student i have to wait for money to refund and then submit again. So so far total of 10 days has been wasted for nothing just waiting refund so i can re-enroll again. they could’ve made it easy by changing the address but this apple ****** system. THEN WHAT I AM SUPPOSED TO DO IF APPLE SYSTEM ******. i am literally now struggling to complete enrollment and it is taking up to one month with 0 progress. A company as apple it is a SHAME all this bad experience can be faced just for the sake of a developer account that is not even free or cheap to torturing you like this. I heard for US residents the process for completing the enrollment it just take few hours and i hope this is not true otherwise it is a another shame. Im sure these forums are for asking help not complaining but i wanted to shared my awful experience with apple and see if I'm the only one facing this or someone else went through that as well. forgive my bad English. cheers,
Posted
by
Post not yet marked as solved
2 Replies
72 Views
In South Africa, there is a huge difference in shifting from Sole Prop to Company, financially it is not viable and it's a huge admin nightmare. Using your personal name is unprofessional, it doesn't help any bit in launching a business. Apple really needs to reconsider this decision. Apple needs to allow the use of a fictitious name. Why is this such a problem?
Posted
by
Post not yet marked as solved
0 Replies
102 Views
"We noticed some irregular activity associated with your vendor number XXXXXX and have paused your earnings payments while we investigate. Once our review is complete, we'll determine if we can resume your payments." Has anyone encountered the same problem? Has your payment resumed? and issues with getting paid this month? The expected date was 30 June, and the 1 Jul update was ''balance carried forward'' and until today it's still ''balance carried forward''.
Posted
by
Post not yet marked as solved
1 Replies
102 Views
Hi Apple Team, Today I must to report this error because if this error don't get a fix soon, there will no be anymore new developers in Apple Community who is enrolled to the Apple Developer Program. This error I getting constantly is from last year and it's not fixed yet. After I chose Developer Account Type, select agree and continue, I'm constantly redirected to this page: Enroll - Apple Developer - https://developer.apple.com/enroll/error And the Error message I recieved from that page is: Error Message: We are unable to process your request. An unknown error occurred. I double checked and I meet all the requirements to enroll to Apple Developer Program but still doesn't work. From Developer Tools Option in Microsoft Edge browser (Chromium-based), I got this error - you can try to look closely to this error and maybe you can fix Enrollment problem with fixing those errors: Console log: [localizationService] Key not found: appnav.meta.description npm.angular.bundle.js?v=34d2:1 Error: Failed to load resource: the server responded with a status of 406 (Not Acceptable): /services-enrollment...ividualEnrollment:1 Thank you in advance for your response! Best Regards, Elvis Trujanovic
Posted
by
Post not yet marked as solved
1 Replies
102 Views
Hello, Recently I discovered that I'm unable to test my apps on real device. Then I've found out, that my account is blocked (I'm Ukrainian living in Kyiv) due to USA "sanctions" against Ukrainians who live in Donetsk and Luhanks regions. I think that in my dev account info there was my old address (Donetsk), but I live in Kyiv for a long time (I forgot to update my address). Now I'm trying to contact Apple support (already submitted few form requests), but they're completely silent on this issue (I believe there should be option to upload ID documents/proof of residence). Is there any way Apple can restore my dev account? Any chance that support will help/answer? Regards, Oleksandr 🇺🇦
Posted
by
Post not yet marked as solved
0 Replies
76 Views
Hi, at our company we have 1 developer license so every apps developed and released under that one license from a Mac. Now another developer within the company would like to update same apps but using a different Mac. So then we would have 1 developer license and 2 Macs would use the same license. How can both developers develop same app under same license but on 2 different Mac? Do we just need to export something from keychain and import on the other Mac or do we need to register the other Mac somewhere? Thanks
Posted
by
Post not yet marked as solved
0 Replies
82 Views
We have an organization of about 500 employees, and we have developed an app for internal use only. I want our employees to use this app. So we have built the app ( we choose EAS build CLI with all valid certificates, provisioning profile and unique bundleIdentifier) Then, we got a link which we can open on our iOS devices (or scan the QR code) and follow the instructions to install the development profile. Then we got a link to download an application on our device. And it seems an app icon in our device but when we try to open it by touching the icon we are getting a message "Unable to install App, This app cannot be installed because its integrity could not be verified." In short we can say ,Our organization is facing the following error when downloading an "enterpriseProvisioning": "universal" EAS Build app from Expo.
Posted
by
Post not yet marked as solved
1 Replies
75 Views
I am an author. I have an individual LLC (I am the sole owner). I am wanting to register an apple connect account and publish an e-book. Do I register as an individual, since I am the only member of my LLC, or do I register as an an organization?
Posted
by
Post not yet marked as solved
1 Replies
97 Views
On the description page https://developer.apple.com/app-store/small-business-program/ it only list the reduced commission rate as a benefit and nothing else. I am wondering if the "Small Business" in the name of the program implies that my account is going be converted to an organisation account and I am going to be able to invite my teammates as additional developers to my developer account.
Posted
by