I am trying to include an appex file in my MacOS app so that my Jetpack Compose app supports 'share to' capability.
Right now, there is no way to include the appex file within the .app/Contents directory. Even though there is a way to include more resources, those files are copied in the .app/Contents/app directory which cannot be used to match the structure apps expect to have.
Electron packing apps (such as electron-builder) provide a property which allows users to include files they want in their packaged applications.
As a suggestion, there could be a new property similar to electron-builder's extraFiles that can be used to include files into the app's content directory.
I am trying to include an appex file in my MacOS app so that my Jetpack Compose app supports 'share to' capability.
Right now, there is no way to include the appex file within the
.app/Contents
directory. Even though there is a way to include more resources, those files are copied in the.app/Contents/app
directory which cannot be used to match the structure apps expect to have.Electron packing apps (such as electron-builder) provide a property which allows users to include files they want in their packaged applications.
As a suggestion, there could be a new property similar to electron-builder's extraFiles that can be used to include files into the app's content directory.