B4J Question [RESOLVED] Error MAC Open file excel App Crash after signed

MarcoRome

Expert
Licensed User
Longtime User
Hi All
As mentioned in this thread I had a problem opening an excel file from MAC.


In any case I thought I solved using the statement
B4X:
fx.ShowExternalDocument(File.GetUri(File.DirApp, nomefile))

I made the package using Macsigner, after pressing "Link" I try to run the app via run.command the excel file is opened regularly.

After having packaged, notarized, stapled and then actually tried the signed app, the application runs fine but when I go to export and save the excel file it crashes


Any idea ??
Thank you
Marco
 

MarcoRome

Expert
Licensed User
Longtime User
I made the package using Macsigner, after pressing "Link" I try to run the app via run.command the excel file is opened regularly.

After having packaged, notarized, stapled and then actually tried the signed app, the application runs fine but when I go to export and save the excel file it crashes


Any idea ??
RESOLVED:
Change File.DirApp in File.DirTemp
B4X:
fx.ShowExternalDocument(File.GetUri(File.DirTemp, nomefile))
 
Upvote 0
Top