Posts

Post not yet marked as solved
12 Replies
0 Views
Apple has not addressed the issue even after a week. Bug ID: FB9760173 I am not able to proceed without sandbox receipt as I need to test in-app purchase integration which I introduced for the first time in my app. Is there any work around?
Post not yet marked as solved
5 Replies
0 Views
We could not reproduce it in our system using same system configuration (with fresh OS install as well). Most of these users who had installed had installed beta version of the OS and I am not sure if this is the issue. Also for these users (who are facing crash), my app is not getting listed under Microphone. We asked user to try tccutil reset All and restart the system and re-launch the app. But, still app is not listed under Microphone, nor even permission alert (displayed by OS API to give access to Microphone when we use Audio API) is displayed to these users. It just crashes. What work around can be given to these users? Could you please give suggestion?
Post not yet marked as solved
5 Replies
0 Views
We will be providing DMG to the user and user need to drag and drop it to the Applications folder (applications fodler shortcut has been provided in DMG and have guided user to drag and drop it to Applications folder) The application launches a Helper application using the call SMLoginItemSetEnabled. This helper is required to monitor and switch back to user preferred sound output when our application crashes. Also, this helper is not terminated by setting false to SMLoginItemSetEnabled, if user wants to launch our application on system-login. Thank you. Regards, Deepa
Post not yet marked as solved
6 Replies
0 Views
I was thinking of using App Groups for common user data. Thank you very much for the response.
Post not yet marked as solved
6 Replies
0 Views
Yes, NSConnection has been deprecated quite long back and due to some constraints we could not migrate. I would like to know if NSXPCConnection will be the right approach for communication between Main and Helper app. We need to share some data too between Main and Helper app. If NSXPCConnection is the right approach in the following context Can someone write their version of Helper.app with same bundle identifier as my Helper.app and expose a xpc-connection with same service name (when my Main.app and Helper.app is not running). Now when Main.app is launched, it get connected to 3rd party Helper.app.
Post not yet marked as solved
3 Replies
0 Views
Suppose you are copying the custom fonts to the Bundle's Resources folder directly (without subfolder), add the key "Application fonts resource path" to your Info.plist with empty value. Please check if this solves the problem.
Post not yet marked as solved
8 Replies
0 Views
Thank you eskimo. This has worked for me. Sorry for mentioning your email address. Regards, Deepa
Post not yet marked as solved
8 Replies
0 Views
I have attached the sample project that I created to learn OSACOMPILEEXECUTEONLY. I have added apple script "ScriptTest.scpt" to the project, OSACOMPILEEXECUTEONLY is set to true. If I compile the project and check the Resources folder of the TestScript.app, there exist ScriptTest.scpt which can be opened and readable in ScriptEditor. Would you please let me know what I am doing wrong here. The sample project is attached to your email … with the subject "OSACOMPILEEXECUTEONLY does not make script execute only"
Post not yet marked as solved
8 Replies
0 Views
Thank you eskimo. The usage of the command was not proper. Now, it worked for me. I had used initially: osacompile -x <MyAppleScriptPath.scpt> It should have been osacompile -x -o <MyAppleScriptReadOnlyPath.scpt> <MyAppleScriptPath.scpt> But, why it does not work via XCode Build Settings?
Post not yet marked as solved
8 Replies
0 Views
I am facing the same problem if I run osacompile with -x flag. osacompile -x <MyAppleScriptPath>. If I open Apple Script at path MyAppleScriptPath after running osacompile command, I can still read Apple script command whereas the expectation is the script will be in executable format and command are not readable.
Post marked as solved
76 Replies
0 Views
Did you grt any solution? I am also facing the same issue. It was working fine till yesterday,
Post not yet marked as solved
3 Replies
0 Views
I need to include entire app features including UI in this framework. Some other 3rd party developer can extract and embed this framework in their app and distribute. This is the security concern that I a, having.The reason for making entire app as framework is that:We need to distribute our application via different vendor channels. We keep adding some new vendor channels and some we might remove. We need to integrate different source/nib files for each vendor channel and hence we need to create different targets for each channel. Whenever I create new target, I need to manually search and add application related source files and nib files to this new target (I cannot create duplicate of existing target which has some set of source/nib files specific to that target).When there are huge set of source/nib files, manual work would be impossible. So, I would lile to check if there is any solution which I might be missing.Thank you.Deepa