Launching app OR app store from Safari?

It’s not possible to check if app is installed from a web page. You could do it inside an other app by checking if your url scheme can be opened using UIApplication’s -canOpenURL: method, but there is no javascript equivalent to this. However, you can use the following workaround: <script language=”javascript”> function open_appstore() { window.location=’http://itunes.com/’; … Read more

Is it possible to deploy a Python application on the Mac App Store?

I packaged Pennywise, which is available on the Mac App Store. It’s based on Virgil’s moneyGuru, which uses Python, PyObjC, and py2app. You will have to follow Apple’s process for preparing an application for submission to the Mac App Store. Most importantly, you will want to add the proper keys to your Info.plist, and remove … Read more

App Store Connect Upload Error “You haven’t been given access to cloud-managed distribution certificates”

If you have the Admin rights, you can enable this for anyone with Developer role if you Go to App Store Connect https://appstoreconnect.apple.com/ Select the “Users and Access” tab Select the right person and under Additional Resources, check both Access to Certificates, Identifiers & Profiles and Access to Cloud Managed Distribution Certificate. If you don’t … Read more

Unable to process application info.plist validation at this time due to a general error (1095)

This is clearly an Apple server issue, not an Xcode/iOS/OSX issue. Just wait patiently and Apple’s servers will catch up to the traffic, or solve whatever issues they’re having at their end. If you’re anxious, feel free to just sit there and restart Xcode until it works – but it’s not restarting Xcode, only the … Read more