Hey guys!
I believe I've found the solution to successfully enrol for the Apple Developer Program. This is for all of us who have tried enrolling and waiting in vain for the confirmation email from Apple after the acknowledgement email.
First, you should know that the whole time I was attempting to enrol I was using my iCloud account and I was trying to do so via my MacBook with the browser. I tried both Firefox and Safari just to be sure it wasn't a browser thing.
Then a thought came to me... since I knew Apple also had an Apple Developer app on its store that according to its articles it claims can be used to enrol...
I chose to go for it, and this time I opted to enrol with my iPhone for good measure... I downloaded the Apple Developer app... logged into my iCloud account and attempted to enrol. However, this still didn't work. The message said that I couldn't use that email to enrol... And so I signed out and opted to use my Gmail account and voila! I was able to enrol!! The payment went through successfully! I received the SMS notification from my bank and I also got the subscription confirmation from Apple.
That's how I did it.
I really hope this helps someone 🙏.
Apple Developer Program
RSS for tagCreate and deliver software for users around the world on Apple platforms using the the tools, resources, and support included with Apple Developer Program membership.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Created
Hi,
My IAPs for my projects have been broken for a bit, and its because I hadn't signed my paid agreement in App Store Connect.
I signed this agreement on Wednesday evening, but it appears that information still hasn't propagated and my IAPs are still not available.
Does anyone know how long that takes to propagate through Apple's systems?
Thanks
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Hello, I submitted a request for FPS credentials but haven't received any feedback. How long does it usually take for the credentials to be issued?
require File.join(File.dirname(node --print "require.resolve('expo/package.json')"), "scripts/autolinking")
require File.join(File.dirname(node -e "console.log(require.resolve('react-native/package.json'))"), "scripts/react_native_pods")
require 'json'
podfile_properties = JSON.parse(File.read(File.join(dir, 'Podfile.properties.json'))) rescue {}
ENV['RCT_NEW_ARCH_ENABLED'] = podfile_properties['newArchEnabled'] == 'true' ? '1' : '0'
ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] = podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
use_modular_headers! # Enable modular headers globally
use_autolinking_method_symbol = ('use' + '_native' + '_modules!').to_sym
origin_autolinking_method = self.method(use_autolinking_method_symbol)
self.define_singleton_method(use_autolinking_method_symbol) do |*args|
if ENV['EXPO_UNSTABLE_CORE_AUTOLINKING'] == '1'
Pod::UI.puts('Using expo-modules-autolinking as core autolinking source'.green)
config_command = [
'node',
'--no-warnings',
'--eval',
'require(require.resolve('expo-modules-autolinking', { paths: [require.resolve('expo/package.json')] }))(process.argv.slice(1))',
'react-native-config',
'--json',
'--platform',
'ios'
]
origin_autolinking_method.call(config_command)
else
origin_autolinking_method.call()
end
end
platform :ios, podfile_properties['ios.deploymentTarget'] || '13.4'
install! 'cocoapods',
:deterministic_uuids => false
prepare_react_native_project!
target 'StayRealtor' do
use_expo_modules!
config = use_native_modules!
use_frameworks! :linkage => :dynamic # Enable dynamic frameworks globally
use_react_native!(
:path => config[:reactNativePath],
:hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes',
:app_path => "#{Pod::Config.instance.installation_root}/..",
:privacy_file_aggregation_enabled => podfile_properties['apple.privacyManifestAggregationEnabled'] != 'false',
)
Adding Firebase dependencies with modular headers
pod 'Firebase', :modular_headers => true
pod 'FirebaseCoreInternal', :modular_headers => true
pod 'FirebaseCore', :modular_headers => true
pod 'Firebase/Auth', :modular_headers => true
pod 'Firebase/Firestore', :modular_headers => true
pod 'Firebase/InAppMessaging', :modular_headers => true
pod 'Firebase/RemoteConfig', :modular_headers => true
pod 'Firebase/Storage', :modular_headers => true
pod 'FirebaseAuthInterop', :modular_headers => true
pod 'FirebaseAppCheckInterop', :modular_headers => true
pod 'FirebaseCoreExtension', :modular_headers => true
pod 'RecaptchaInterop', :modular_headers => true
pod 'FirebaseFirestoreInternal', :modular_headers => true
pod 'FirebaseInstallations', :modular_headers => true
pod 'FirebaseABTesting', :modular_headers => true
pod 'nanopb', :modular_headers => true
pod 'GoogleDataTransport', :modular_headers => true
pod 'GoogleUtilities', :modular_headers => true;
post_install do |installer|
react_native_post_install(
installer,
config[:reactNativePath],
:mac_catalyst_enabled => false,
:ccache_enabled => podfile_properties['apple.ccacheEnabled'] == 'true',
)
# Fix for Xcode 14 signing resource bundles
installer.target_installation_results.pod_target_installation_results
.each do |pod_name, target_installation_result|
target_installation_result.resource_bundle_targets.each do |resource_bundle_target|
resource_bundle_target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end
post_integrate do |installer|
begin
expo_patch_react_imports!(installer)
rescue => e
Pod::UI.warn e
end
end
end error:[!] The following Swift pods cannot yet be integrated as static libraries:
The Swift pod FirebaseAuth depends upon FirebaseAuthInterop, FirebaseAppCheckInterop, FirebaseCoreExtension, and RecaptchaInterop, which do not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set use_modular_headers! globally in your Podfile, or specify :modular_headers => true for particular dependencies.
The Swift pod FirebaseFirestore depends upon FirebaseCoreExtension and FirebaseFirestoreInternal, which do not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set use_modular_headers! globally in your Podfile, or specify :modular_headers => true for particular dependencies.
The Swift pod FirebaseInAppMessaging depends upon FirebaseInstallations, FirebaseABTesting, and nanopb, which do not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set use_modular_headers! globally in your Podfile, or specify :modular_headers => true for particular dependencies.
The Swift pod FirebaseRemoteConfig depends upon FirebaseABTesting and FirebaseInstallations, which do not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set use_modular_headers! globally in your Podfile, or specify :modular_headers => true for particular dependencies.
The Swift pod FirebaseSessions depends upon FirebaseCoreExtension, FirebaseInstallations, GoogleDataTransport, and nanopb, which do not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set use_modular_headers! globally in your Podfile, or specify :modular_headers => true for particular dependencies.
The Swift pod FirebaseStorage depends upon FirebaseAppCheckInterop, FirebaseAuthInterop, and FirebaseCoreExtension, which do not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set use_modular_headers! globally in your Podfile, or specify :modular_headers => true for particular dependencies.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
My Genmoji is not opening . Every time I open it it just closes right away.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
i got mine yesterday it is so good but i waited almost 2 weeks
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
I add UDIDs but I don't see it in the list. Trying to add again and get error that this device already added. Also there is no added device in Provision Profile. What can we do with that?
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
i am unable to do cpu core offline using
"sudo cpuctl offline 2"
it is giving error like
cpuctl: processor_exit(2) failed
is there any ways to do cpu offline on Apple Silicon?
Every document you can think of has my name, "Pranam," in it, and I refuse to change my name, nor do I want any alias inserted. Kindly assist me with the right way to solve this issue in a manner that is ethical, inclusive, and legally valid according to government documents.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Hello,
Where can I find invoices about my developer account?
Where can I change payment information for my developer account?
Thanks for your kind support!
Johan
My credit card with name of my wife is not avaiable so now i want to use my card to purchase program of individual
but name of account is not change to my name even i changed in appleid
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Hi,
ok everyone. I need help please. My developer account was suddenly blocked without any reason and any notice. What I should do now?
On regular support I didn't get any useful information, they said that this is probably permanent. WTH?? Can I even know what I have done wrong???Any help please!
I cant beleive it. I have building app for years to get some subscribers and now the block me without ANY info !!!!???
I pay for developer account for some year I was at wwdc etc. and now I get blocked. ***
PLEASE HELP!
the account Im writing from is not the account that was blocked! I would write with my main developer account but I cant login.
Hello everyone,
I recently enrolled in the Apple Developer Program, completed all required forms, and submitted my payment details. I received an email confirming my enrollment order and stating it would be processed within two business days, but it’s now been over four days, and I haven’t seen a charge on my card or received any follow-up communication.
Here’s what I’ve tried so far:
Emailed Apple Developer Support multiple times: No response after four follow-ups.
Called Apple Support: They couldn’t connect me directly to Developer Support.
Is there a way to expedite this or another contact method that I might have missed? Any advice or similar experiences would be greatly appreciated!
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
For un unknown reason, my Apple ID has been blocked. Since I can not connect anymore to my developer account !
I've asked to unblock it (iforgot.apple.com) but according to support the unblock sequence is not send because this Apple ID is in used.
I need help to unblock my ID in order to manage my app....
note : I use an another account to post this messages.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Hi there,
I subscribed and paid for the Apple Developer Program through the Developer app on my Mac two days ago, but the program is still not active.
In the Developer app, I now see a message saying that I can’t enroll through the app with this account, even though I did it before. On the web version, it says I need to purchase the membership—how is that possible? I can see my subscription in my account subscriptions.
Support hasn’t provided any answers yet.
Have been on 18.2 beta for a while and am now on beta 3 for the past few days and am still waiting acceptance for Genmoji, playground, etc...
How long is the typical wait?
On iPhone 16 Promax
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Are Administrators able to request a system extension via https://developer.apple.com/contact/request/system-extension/ or are Account Holders the only ones who can?
I created a PointsOfInterestSearch (https://developer.apple.com/documentation/mapkitjs/pointsofinterestsearch) on the frontend using MapKit JS:
const poiSearch = new window.mapkit.PointsOfInterestSearch({
center: new mapkit.Coordinate(userLocation.lat, userLocation.lng),
radius: 10000,
});
poiSearch.search((error, results) => {
console.log("Length of poiSearch:", results.places.length);
results.places.forEach((place) => {
console.log("Name:", place.name);
});
});
The length of results.places is 20. Trying it with a bigger radius also still results in 20.
The docs for PointsOfInterestSearchResponse shows only a places (https://developer.apple.com/documentation/mapkitjs/pointsofinterestsearchresponse) and no options for pagination.
How can I paginate the rest of the results?
I'm encountering an issue while trying to enroll in the Apple Developer Program using the mobile app. Every time I attempt to proceed, I receive the following error message: "There may be an issue with your account that needs to be resolved before you can continue."
I have verified my account information and followed all the necessary steps. I sent an email to Apple, but I haven’t received a response for several days.
I’d be grateful for any help if anyone else has experienced this issue.
Topic:
Developer Tools & Services
SubTopic:
Apple Developer Program
Couple of days ago I installed ios 18.2 beta update and now my iphone 15 pro drains battery and overheats like hell. It is difficult to touch. and as i plug out my charger, the battery drains very fast (30% to O% in 10 minutes with no literally no use)
To note, my battery health is 100% with around 176 battery cycles and i always use original apple 20W charger and cable.
I have even changed the charger to a new original apple 20W charger and the issue persists. I have reset it but still the same happens. so it is lying dead for 2 days because i cannot charge it because of extreme heating. I got it checked at apple authorised service center as mentioned on apple website, they said they would reinstall the software in warranty. today they said they said the issue persists after sofware reinstallation and saying it is hardware thing.
What should i do??