DelphiWorlds

Results 227 comments of DelphiWorlds

Sorry, I meant to comment here a few days ago when I pushed a fix. Can you check whether it works for you now?

> In DW.Connectivity.iOS.pas: `DW.Connectivity.iOS.pas` has become redundant, as `DW.Connectivity.Mac.pas` replaces it. This is the implementation uses clause in `DW.Connectivity.pas`: ```delphi {$IF Defined(ANDROID)} uses DW.Connectivity.Android; {$ELSEIF Defined(MACOS)} uses DW.Connectivity.Mac; {$ELSEIF Defined(MSWINDOWS)}...

See [this comment](https://github.com/LongDirtyAnimAlf/Delphi-Android-SMB/issues/1#issuecomment-1938689763). It appears this repo is no longer supported.

I am not seeing this error, also using Delphi 12.1. Are you building the demo, or your own project? If it is the demo, have you made any changes to...

I'm working on it.. deciding what to do about supporting both 12.2 **and** earlier versions, because using the newer Firebase iOS SDK (for example) with iOS 18 SDK (at least)...

I updated the Barcode Scanning support a few days ago so that it should support either Firebase iOS SDK 10.8 or 11.2. Note that if you are including Firebase Cloud...

> However, on Android, there is currently no equivalent way to access or process this property That's because there is no such thing as categories on Android. The closest equivalent...

Changes should follow the [coding guidelines](https://github.com/DelphiWorlds/Kastri/blob/master/CodingStandards.md), i.e. regular properties should come before event properties, and be inserted in alphabetical order. Can you tell me how you would use this property?...

Closing due to no response

If you're not receiving a token, the most likely cause is that you've not patched `FMX.PushNotification.FCM.iOS.pas` correctly, or the correct profile is not being used. For patching, see [this section...