-
Content Count
1489 -
Joined
-
Last visited
-
Days Won
36
Everything posted by Dave Nottage
-
Looking for help in the code signing and certification for Mac OS
Dave Nottage replied to meshael's topic in FMX
You could use Grijjy's DeployMan tool - it makes this process a lot easier. They describe it in this article: https://blog.grijjy.com/2017/01/30/embed-facebook-sdk-for-android-in-your-delphi-mobile-app-part-2/ In the section titled "Add the resources to the Delphi Deployment Manager for your Android project" -
Tools|GetIt Package Manager. In Categories, filter by Patches and Hotfixes: Unless the patch has been fixed by now, you need to also download the latest PAServer. Please see: https://delphiworlds.com/2020/12/apple-patch-re-patched/
-
Looking for help in the code signing and certification for Mac OS
Dave Nottage replied to meshael's topic in FMX
That's something I need to do. There's basic help for the "MonkeyBuilder" edition, and virtually zero for the "full" version which is in beta. I'll make sure I can help while working on some doc. The installer for Mosco itself actually just the standard .pkg format, created with the pkgbuild command: https://www.manpagez.com/man/1/pkgbuild/ I may look into using some of the options in order to make creating installers more customisable -
Were there any particular classes that apply to you for that bug? Well, as you can see, I share your pain with that particular one 😉
-
Looking for help in the code signing and certification for Mac OS
Dave Nottage replied to meshael's topic in FMX
Yes, it was posted in the channel a few hours after you asked about it -
Does it absolutely have to be RTMP? Just seems like RTMP is fading while other streaming methods like WebRTC are taking over. Alcinoe has implementations for WebRTC for Android and iOS: https://github.com/Zeus64/alcinoe. There's also a demo that uses it, here: https://github.com/Zeus64/alcinoe/tree/master/demos/ALLiveVideoChat
-
Looking for help in the code signing and certification for Mac OS
Dave Nottage replied to meshael's topic in FMX
I had a look at Packages and could not work that out, either. Your project is? I've been working on an app called Mosco that creates .pkg installers (amongst a number of other things). It doesn't have the Presentation customizations that Packages does, but I might be able to add those if needed. I have a plan to release it commercially sometime early next year. If you're interested in Mosco and use Slack, you could use this self-invite link to join my Slack workspace: https://slack.delphiworlds.com and I could add you to the private beta channel. -
Looking for help in the code signing and certification for Mac OS
Dave Nottage replied to meshael's topic in FMX
What road blocks did you run into? -
Can you let me know which ones?
-
Even if someone here can understand it, you should report it here: https://quality.embarcadero.com/
-
Why not just set Enabled to False?
-
Error while building an Android application in Delphi 10.4 Sydney
Dave Nottage replied to at3s's topic in FMX
In the unit we've been discussing: -
Error while building an Android application in Delphi 10.4 Sydney
Dave Nottage replied to at3s's topic in FMX
It could be due to the version of the NDK. Try changing: 'libgnustl_static.a' to 'libc++abi.a' -
Error while building an Android application in Delphi 10.4 Sydney
Dave Nottage replied to at3s's topic in FMX
Yes - are you perhaps using an older version of the Grijjy Error Reporting code? The error in question was happening before they updated this unit: https://github.com/grijjy/JustAddCode/blob/master/ErrorReporting/Grijjy.ErrorReporting.pas Otherwise, you'd need to detail exactly what you're compiling and perhaps include a reproducible example. -
Easy way to keep your Smarphone (Android or similar) connected in your IDE same in Debug - No more Losted Device / Connection
Dave Nottage replied to a topic in Cross-platform
Actually, it is usable; at least for me (Pixel 3a, Android 11). It seems tcpip mode is in addition to usb mode. It appears that using adb usb just removes tcpip mode. -
Linking errors with FacebookAudienceNetwork
Dave Nottage replied to Chris Pim's topic in Cross-platform
There's no such error message, since x is an invalid hex character. Please provide the exact error message. -
Linking errors with FacebookAudienceNetwork
Dave Nottage replied to Chris Pim's topic in Cross-platform
What were the errors? -
It's yet to be officially supported, however you can build apps with 10.4.1 that will run on Android 11 devices. What is the exact message? Is this an app that was created in an earlier version of Delphi?
-
Linking errors with FacebookAudienceNetwork
Dave Nottage replied to Chris Pim's topic in Cross-platform
Which would invalidate using the "solution" from jvesoft. Surely they have complaints about it? -
Linking errors with FacebookAudienceNetwork
Dave Nottage replied to Chris Pim's topic in Cross-platform
Given that the instructions are to include the framework with the project, I assume he is loading it dynamically. If I have time, I'll give it a shot myself, however if you have this file: https://github.com/DelphiWorlds/Kastri/blob/master/API/DW.iOSapi.FBAudienceNetwork.pas Replace the implementation section with: uses Posix.Dlfcn; var FANModule: THandle; // procedure FBAudienceNetworkLoader; cdecl; external libFBAudienceNetwork; // <---- Uncomment this if using static binding initialization FANModule := dlopen(MarshaledAString(libFBAudienceNetwork), RTLD_LAZY); finalization dlclose(FANModule); end. You'll still need to follow the instructions on the jvesoft site regarding signing/deploying FBAudienceNetwork Good luck! 🙂 -
Happens to me too, iOS 14.2 SDK, Xcode 12.2 on macOS 10.15.7. Reported here: https://quality.embarcadero.com/browse/RSP-31795
-
The Embarcadero GetIt server could not be reached...
Dave Nottage replied to PeterPanettone's topic in Delphi IDE and APIs
Is the value for ServiceKind "Online" (without the quotes)? -
I'm having similar issues, i.e. building Firebase against iOS 14.2 SDK. Looking into it...
-
Yes, I've been successful, using iOS SDK 13.5, iOS 14.1 device
-
How to prevent TEdit FMX from being overwritten by the virtual keyboard?
Dave Nottage replied to Fabian1648's topic in FMX
There's an example discussed here: https://delphiworlds.com/2018/07/moving-controls-virtual-keyboard-revisited-again/