-
Content Count
1613 -
Joined
-
Last visited
-
Days Won
37
Posts posted by Dave Nottage
-
-
4 hours ago, fkork said:We are need rtmp live camera sdk for delphi which is a live camera rtmp publish component for Android and IOS can be used to develop video broadcast mobileapp
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 hours ago, meshael said:I couldn't determine where to put my project's files that the program uses
I had a look at Packages and could not work that out, either.
3 hours ago, meshael said:Its about 20 subfolders holding about 1,000 text files and images.
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.
-
5 hours ago, meshael said:I was trying to use Packages but ran into some road blocks
What road blocks did you run into?
-
14 hours ago, eg1 said:I have waiting 2 active bug fix, one from 2015 other one from 2020 February
Can you let me know which ones?
-
-
1 hour ago, ChrisChuah said:Is there a function when there is switch event, to disallow the component from switching from off to on?
Why not just set Enabled to False?
-
-
32 minutes ago, at3s said:I do not see any newer versions of this unit on github
It could be due to the version of the NDK. Try changing: 'libgnustl_static.a' to 'libc++abi.a'
-
1
-
-
1 hour ago, at3s said:Has anyone something similar?
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.
-
1
-
-
4 hours ago, emailx45 said:Disconnect your USB cable, it's not usable now!
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.
-
1 hour ago, eg1 said:Unable to install package (e800801x)
There's no such error message, since x is an invalid hex character. Please provide the exact error message.
-
7 hours ago, eg1 said:I tried to sign and deploy adapter sdk but deployment failed
What were the errors?
-
1
-
-
8 hours ago, zburns said:Checking out the platform status page - looks like Android 11 isn't supported anyway
It's yet to be officially supported, however you can build apps with 10.4.1 that will run on Android 11 devices.
8 hours ago, zburns said:stating to contact the developer
What is the exact message? Is this an app that was created in an earlier version of Delphi?
-
47 minutes ago, Chris Pim said:TestFlight it raises errors from the App Store because you’re embedding a third party binary and the store isn’t a fab of doing this
Which would invalidate using the "solution" from jvesoft. Surely they have complaints about it?
-
1
-
-
2 hours ago, eg1 said:Also jvesoft have Admob and Facebook Audience component but I don't understand how he is added this framework successfully
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! 🙂
-
1
-
-
4 hours ago, TTSander said:I'm using the iOS14.2-SDK and XCode 12.2 running on Big Sur. This errors occurs for any application where ClientDataSets are used.
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
-
1 hour ago, yilmaz bozaci said:URL fix didn't work for me
Is the value for ServiceKind "Online" (without the quotes)?
-
18 hours ago, MikeMon said:Actually, I think this has to do with Firebase using Kastri
I'm having similar issues, i.e. building Firebase against iOS 14.2 SDK. Looking into it...
-
1
-
-
Yes, I've been successful, using iOS SDK 13.5, iOS 14.1 device
-
On 11/21/2020 at 8:06 AM, Fabian1648 said:Does anyone know of an approach to avoid this behaviour?
There's an example discussed here: https://delphiworlds.com/2018/07/moving-controls-virtual-keyboard-revisited-again/
-
2 hours ago, Eric58 said:Modifications Needed on Han's code:
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);
-
2
-
-
3 hours ago, Juan Young said:i tried code like below and i open Debugview
Running it from the IDE, or standalone? If you run it from the IDE, the messages appear in the Messages window of the IDE
-
6 hours ago, Hans♫ said:I think David has implemented his own solution in his Kastri framework:
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.-
1
-
-
1 hour ago, Juan Young said:that event didn't fire
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.
Looking for help in the code signing and certification for Mac OS
in FMX
Posted
Yes, it was posted in the channel a few hours after you asked about it