DelphiWorlds

Results 227 comments of DelphiWorlds

I've pushed the [work in progress to the Playground repo](https://github.com/DelphiWorlds/Playground/tree/main/Demos/AndroidBackgroundLocation). Please have a look and let me know what you think.

This could end up being a bit of a challenge, since some packages can have dependencies on the same packages, but different versions, and there's no information inside the package...

I've updated the `.dproj`, added a manifest template for the demo, and updated the readme. > 1. Can i Save the original audio ? > 2. Can i work on...

For doing speech recognition on existing audio files (e.g. .wav), the best option would be to use the [Google Speech-To-Text Cloud API](https://cloud.google.com/speech-to-text/docs), however of course this would need conversion into...

As per my comment in the Telegram chat, you can target single apps by using the overload of the `Share` method that has the `ATargetPackage` parameter (pass the package name,...

> The package https://github.com/DelphiWorlds/Kastri/blob/master/Packages/KastriFMX.dpk has hadcoded Z:\ inside. It should be ..\ Same happens for https://github.com/DelphiWorlds/Kastri/blob/master/Packages/KastriFMX.dproj Fixed. >https://github.com/DelphiWorlds/Kastri/blob/master/Packages/KastriBuild.dpk misses a "in" the contains section. It should be: contains DW.Precompile in...

I've fixed it now, so that it's compatible with smartsetup, however since Delphi considered the source valid code, smartsetup might need to be fixed sometime in the future so that...

> But I see that castribuild doesn't support linux, so maybe that's the reason? It should, actually. I originally started supporting Linux, but the project was last saved using an...

I've pushed a change to `DW.Androidapi.JNI.AndroidX.Camera.pas` that should fix it

I'm considering making these changes. For Android, on line 73: ```delphi if (Length(AFileNames) = 0) or MatchStr(LFileName, AFileNames) then ``` For iOS on line 124: ```delphi if (LIndex > -1)...