Jump to content

Dave Nottage

Members
  • Content Count

    1560
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Dave Nottage

  1. Yes, it was posted in the channel a few hours after you asked about it
  2. Dave Nottage

    RTMP Live Camera Publish Component For Delphi 10.4.1

    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
  3. 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.
  4. What road blocks did you run into?
  5. Dave Nottage

    iOS Metal Api FlipHorizontal Crash

    Can you let me know which ones?
  6. Dave Nottage

    iOS Metal Api FlipHorizontal Crash

    Even if someone here can understand it, you should report it here: https://quality.embarcadero.com/
  7. Dave Nottage

    TSwitch to allow change?

    Why not just set Enabled to False?
  8. In the unit we've been discussing:
  9. It could be due to the version of the NDK. Try changing: 'libgnustl_static.a' to 'libc++abi.a'
  10. 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.
  11. 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.
  12. Dave Nottage

    Linking errors with FacebookAudienceNetwork

    There's no such error message, since x is an invalid hex character. Please provide the exact error message.
  13. Dave Nottage

    Linking errors with FacebookAudienceNetwork

    What were the errors?
  14. Dave Nottage

    I messed up my SDK and NDK Setup

    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?
  15. Dave Nottage

    Linking errors with FacebookAudienceNetwork

    Which would invalidate using the "solution" from jvesoft. Surely they have complaints about it?
  16. Dave Nottage

    Linking errors with FacebookAudienceNetwork

    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! 🙂
  17. Dave Nottage

    XCode 12 compile error

    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
  18. Dave Nottage

    The Embarcadero GetIt server could not be reached...

    Is the value for ServiceKind "Online" (without the quotes)?
  19. Dave Nottage

    XCode 12 compile error

    I'm having similar issues, i.e. building Firebase against iOS 14.2 SDK. Looking into it...
  20. Dave Nottage

    iOS 14 and Delphi Ad Hoc

    Yes, I've been successful, using iOS SDK 13.5, iOS 14.1 device
  21. There's an example discussed here: https://delphiworlds.com/2018/07/moving-controls-virtual-keyboard-revisited-again/
  22. Dave Nottage

    AV with InApp purchase on MacOS

    The only changed that Hans needed to stop it crashing for him was to change this: FProductsRequest.setDelegate((FProductsRequestDelegate as ILocalObject).GetObjectID); to this: FProductsRequest.setDelegate(FProductsRequestDelegate.GetObjectID);
  23. Running it from the IDE, or standalone? If you run it from the IDE, the messages appear in the Messages window of the IDE
  24. Dave Nottage

    AV with InApp purchase on MacOS

    That's news to me 🙂 I see now from an email that you said I should share what I did for you.. which I will do soon.
  25. It won't fire if it cannot. OnShouldStartLoadWithRequest should fire for every URL that is visited. As Remy said, if it does not, then there's a bug.
×