Thursday, November 21, 2019

Delphi 10.3.3 and Android 64

Finally here are the news about Delphi 10.3.3.


No more mimimi about not be able to build Android 64 with Delphi.

Also iOS 13 with Dark-Mode support.

If you want to get the information what mode the User has selected, just modify the FMX.Platform.iOS (Copy file to your project directory)

and Copy

const
  UIUserInterfaceStyleUnsepcified = 0;
  UIUserInterfaceStyleLight = 1;
  UIUserInterfaceStyleDark = 2;

and 

function GetUserInterfaceStyle: UIUserInterfaceStyle;

to the Interface section!

Also a ready to use Linux-Docker image on Docker-Hub.

If you have the Enterprise Version and want to Build your App with FMXLinux you can provide empty implementations for some System units.
Of course only necessary if you are using this stuff in your app.

// Empty Implementations
System.Linux.Notification.pas 
System.Linux.Sensors.pas
// Add IFDEF Linux64
System.Notification.pas
System.Sensors.Components.pas
System.Sensors.pas


No comments:

Post a Comment