Cannot create standalone

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
kaveh1000
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 539
Joined: Sun Dec 18, 2011 7:23 pm
Contact:

Cannot create standalone

Post by kaveh1000 » Tue Sep 03, 2024 8:55 am

Hi all

I am using LiveCode Create in classic mode and an old stack. When I try to create a standalone (Mac, Linux) I get the following message (with directory redacted). Any ideas pls?

Image
Attachments
Screenshot 2024-09-03 at 08.55.08.png
Kaveh

LCMark
Livecode Staff Member
Livecode Staff Member
Posts: 1232
Joined: Thu Apr 11, 2013 11:27 am

Re: Cannot create standalone

Post by LCMark » Tue Sep 03, 2024 11:26 am

@Kaveh: I've tried locally and cannot reproduce this problem - however, we think we've seen a similar error reported before if you try and build a standalone into a folder which is enabled for iCloud sync? Is that the case here?

kaveh1000
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 539
Joined: Sun Dec 18, 2011 7:23 pm
Contact:

Re: Cannot create standalone

Post by kaveh1000 » Tue Sep 03, 2024 11:41 am

Yup. That was it. Everyone on my mac is synched to Icloud, except a folder that is on Google Drive. I selected the latter and it worked. Thanks. :-)
Kaveh

kaveh1000
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 539
Joined: Sun Dec 18, 2011 7:23 pm
Contact:

Re: Cannot create standalone

Post by kaveh1000 » Tue Sep 03, 2024 12:55 pm

Hi Mark

Following on, I have produced an App for Mac. Gmail will not allow me to attach it, even zipped. When I upload to Google Drive and send the link, the recipient gets the following message. Any suggestions pls?
Attachments
Screenshot 2024-09-03 at 12.52.11.png
Kaveh

LCMark
Livecode Staff Member
Livecode Staff Member
Posts: 1232
Joined: Thu Apr 11, 2013 11:27 am

Re: Cannot create standalone

Post by LCMark » Tue Sep 03, 2024 1:18 pm

@kaveh1000: So I suspect there is nothing wrong with the standalone - its just that Apple doesn't let apps which aren't signed properly (using a certificate from an Apple developer account), or notarized open directly on other machines. (The S/B signs apps with an 'ad hoc' signature so that they will open on the machine they were built on).

Depending on the version of the OS, right-clicking and selecting 'Open' might work (that might require a tweak to GateKeeper settings, I think).

Alternatively, you can ad-hoc sign the app locally from the terminal (on the target machine). Something along the lines of:

Code: Select all

  xattr -cr <path-to-app>
  codesign -s - --deep --force <path-to-app>

Post Reply