skip to Main Content

I have built an application for MacOS that I would like to be able to share with some friends. I have archived the application in XCode and typically used "copy" as a method of distribution. This method has been working as long as I am able to put the files onto a flash drive that I physically hand to a friend. The issue is that I would like to be able to share this over the internet via dropbox or google drive. Unfortunately, when I do, the app does not open with an error message of "can’t be opened." I have tried distributing through my developer ID and notarizing the app, this made no difference. I am sure that there is something that I am overlooking, but I have no clue what it may be. Please help!

Thanks!

2

Answers


  1. You could try compressing/encoding it first and then uploading it to drive, Google File Stream is notorious for corrupting random files

    Login or Signup to reply.
  2. Unfortunately, when I do, the app does not open with an error message of "can’t be opened."

    Another trick is right click > open.

    I have tried distributing through my developer ID and notarizing the app, this made no difference.

    Sounds like you have not checked the code sign errors correctly. Several scripts exist on GitHub where organisations notarise their apps. You can use them.

    I am sure that there is something that I am overlooking, but I have no clue what it may be. Please help!

    Can I share a MACOS app via google drive?

    Yes, but if it’s not notarised, you can add a readme file which tells them to code sign the app themselves

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search