Post

Replies

Boosts

Views

Activity

Reply to App Does Not Run On All
I guess you're not setting up email on your device. According to Apple document: Before presenting the mail compose view controller, always call the the canSendMail() method to see if the current device is configured to send email. If the user’s device is not set up for the delivery of email, you can notify the user or simply disable the email dispatch features in your application. You should not attempt to use this interface if the canSendMail() method returns false. if !MFMailComposeViewController.canSendMail() { print("Mail services are not available") return }
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’21
Reply to Binary distribution from Xcode to app store live
That's the only way to publish a new version. You have no choice even it's a hotfix.
Replies
Boosts
Views
Activity
Jun ’21
Reply to App Store Connect don't show build even Xcode can upload successfully.
Which is your current version on AppStore? And Was your bundleID match with com.meshub.fluWebrtcApp both on AppStoreConnect and Apple Developer?
Replies
Boosts
Views
Activity
Jun ’21
Reply to App Does Not Run On All
I guess you're not setting up email on your device. According to Apple document: Before presenting the mail compose view controller, always call the the canSendMail() method to see if the current device is configured to send email. If the user’s device is not set up for the delivery of email, you can notify the user or simply disable the email dispatch features in your application. You should not attempt to use this interface if the canSendMail() method returns false. if !MFMailComposeViewController.canSendMail() { print("Mail services are not available") return }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to How know previously released app updates's build numbers?
So far as I know, you just allowed getting the latest version (and build number) of your app in AppStore.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21