From the blog

Ext JS și Google Maps pentru vizualizarea datelor geospațiale

Vizualizarea datelor geospatiale utilizând Ext JS și Google Maps Deseori,când vine vorba de lucrul cu date geospatiale (adică date care au asociate informații despre locație), aveți de multe ori nevoie de o modalitate faină de a vizualiza datele din aplicația dvs. pentru a fi utile. Ext JS include un pachet „ux” care conține diferite extensii de utilizator (inclusiv una pentru Google Maps) care vă permite să încorporați cu ușurință o hartă cu informații pe ea în aplicația dvs. Ext JS, împreună cu funcționalitatea încorporată de adăugare automată a markerilor pe hartă în baza datelor dintr-o baza de date din aplicația Dvs. Prin aceasta postare vom demonstra o aplicație simplă construită folosind Ext JS și Google Maps care conține o grilă și o hartă pentru vizualizarea locației clienților. Această aplicație este proiectată să funcționeze atât pe telefon, cât și pe desktop. Atât grila, cât și harta se vor lega de aceeași sursă de date – un set de date de exemplu care conține nume de clienți, adrese, coordonate latitudine / longitudine și număr de licențe software pe care le dețin. Primii pași Vom începe cu setările inițieale în Ext JS și Google Maps. Pentru a crea această aplicație, începeți prin crearea unei aplicații Ext JS noi. Pentru acest exemplu, am folosit Sencha Ext JS 7.0 Modern Toolkit. Pentru ca Google Maps să se redea corect în aplicația dvs., va trebui să generați o cheie API Google Maps prin intermediul consolei Google Cloud Platform, așa cum este descris aici. Această cheie API se asociază la una sau mai multe adrese URL unde aplicația rulează și permite redarea hărților personalizate fără a fi necesar un mesaj de eroare „Google Maps API is required”. După ce ați generat cheia API prin Google Cloud Platform Console și i-ați asociat o adresă URL permisă (de exemplu http: // localhost: 1841), deschideți fișierul app.json și adăugați următoarele în rădăcina fișierului, făcând astfel asigurați-vă că introduceți propria cheie API: Sencha Ext JS va adăuga această cheie (împreună cu orice alți parametri de șir de interogare specificați) la solicitarea la încărcarea Google Maps JavaScript API. În timp ce aveți fișierul app.json deschis, va trebui să adăugați și pachetele ux și google în tabloul necesar: Crearea modelului și a Main View Data model pentru această aplicație este o structură simplă, cu coordonate de nume, adresă, latitudine și longitudine și un câmp care conține numărul de licențe deținute de client: Codul pentru Main View va combina vizualizarea grilă și harta (ambele sunt create în secțiunea următoare). Aceast View prezintă grila și harta poziționate unul lângă celălalt pe orizontală folosind un layout hbox. Totuși, acest lucru nu va arăta grozav pe un telefon, datorită ecranului îngust, așa că putem schimba dinamic aspectul în funcție de tipul platformei și puteți trece la utilizarea unui layout vbox dacă nu folosiți un dispozitiv desktop, specificând următoarea platformConfig pe Main View. Această configurație va poziționa grila deasupra hărții folosind un layout vbox, folosind mai bine spațiul disponibil fără a fi nevoie să definiți vizualizări complet separate (una pentru desktop și alta pentru telefon). Puteți perfecționa acest lucru în continuare adăugând reguli suplimentare bazate pe dimensiunea ecranului sau orientarea ecranului. Vederea principală are, de asemenea, un View Model asociat cu acesta, care conține configurația Magazinelor Clientului și câteva exemple de date înscrise: Ext JS și Google Maps […]

Read More

Un C++ Modern Pentru Windows10

Limbajul de programare C ++ progresează rapid. În 2009, când a fost lansat Windows 7, majoritatea dezvoltatorilor C ++ încă mai foloseau C ++ 98/03 (standardizat în 1998 și 2003), poate plus bibliotecile Boost sau TR1. De atunci, standardele C ++ din 2011, 2014 și 2017 au fost lansate, cu multe schimbări semnificative. Și acum Vă oferim atenției Dvs un IDE performant C++ Modern Pentru Windows10 Cum combinați cu succes C ++ modern pentru Windows 10? C ++ Builder suportă C ++ 17, cel mai recent standard. De asemenea, are suport excelent pentru Windows 10. Să ne uităm la câteva elemente. Suport Windows 10 C ++ Builder progresează în proiectarea UI și construirea rapidă și iterarea aplicațiilor UI. Framework-ul său VCL utilizează controale native Windows, ceea ce înseamnă că obțineți comportamentul real al platformei, spre deosebire de unele cadre care nu se potrivesc niciodată cu aspectul sistemului de operare pe care rulează aplicația. Are multe controale specifice Windows 10, care le permit adesea să fie utilizate și pe versiunile anterioare ale Windows: Produse Embarcadero în promoție: Selectoarele pentru data și ora, vizualizarea de calendar și altele, sunt versiunea modernă a controalelor tradiționale, cu excepția switch -lui, care este probabil nou pentru Windows: Cu toate acestea, una dintre cele mai importante perechi de componente sunt controalele TImageCollection și TVirtualImageList. Suportul High DPI este o funcționalitate importantă în Windows 10, iar aplicațiile construite cu C ++ Builder suport perMonitorv2 High DPI (cea mai recentă versiune care acceptă cel mai bine schimbarea rezoluțiilor pe mai multe ecrane.) O funcționalitate semnificativă a aplicațiilor High DPI este aceea de a avea pictograme fără probleme și imagini, iar aceste două componente asigură că într-un mod mai bun decât listele de imagini proprii Windows (a se vedea documentația) Sunt tehnologie brevetată și sunt un exemplu excelent de tehnologii ultra-moderne, mai bune decât platforma, la care puteți accesa cu C ++ Builder. În stânga, o aplicație mică, nescalată. În dreapta, cum arată la 800%. Observați cât de clare sunt icoanele – acesta este ceva semnificativ mai greu de obținut în Windows fără a utiliza tehnologia noastră înaltă de gestionare a imaginilor DPI. Suport C ++ modern C ++ Builder 10.3.2 suportă C ++ 17 pentru aplicațiile Windows. C ++ modern este diferit de cel tradițional (C ++ 03 și anterior) în câteva moduri cheie: Focus pe cod mai sigur și mai corect – de exemplu, siguranța memoriei cu indicatoare inteligente Focus pe codul mai scurt, mai expresiv – de exemplu, cu lambdas Focus pe simplificarea scrierea C ++ – de exemplu, cu deducerea tipului (specificatorul automat) Aceste trei lucruri caracterizează forma C ++ pe măsură ce a fost dezvoltată și este un limbaj foarte puternic și flexibil. Un număr mare de aceste modificări au avut loc în C ++ 11 și C ++ 14, cu mai multe în C ++ 17. Îmi place în mod deosebit scrierea C ++ 17 a lui Tony van Eerd și, dacă doriți să citiți mai multe despre C ++ modern pentru Windows10, în general, foaia de lucru a lui Anthony Calandra către C ++ modern. C ++ Builder acceptă și livrează cu, Boost 1.68, o versiune recentă a celui mai popular set de terțe biblioteci C ++ în rândul dezvoltatorilor C ++. Dacă aveți nevoie de o bibliotecă, o puteți găsi printre […]

Read More

Upgrade Your WinApps To Windows 10 With RAD Studio

Odată cu încheierea perioadei de asistență pentru Windows 7 în data de 14 Ianuarie 2020, nu a fost niciodată un moment mai bun pentru a vă upgrada aplicațiile pentru Windows 10 with RAD Studio.  RAD Studio oferă asistență extinsă pentru Windows 10. Cu RAD Studio 10.3.3, puteți actualiza rapid și ușor aplicațiile VCL la Windows 10 cu componentele de control Windows VCL, stiluri și servicii WinRT / UWP Windows 10. Acest lucru face ușor să abordați paradigme UI comune pe Windows 10. Embarcadero oferă o serie de controale VCL UI special concepute pentru Windows 10. Include documentație detaliată și demonstrații pentru diferitele controale VCL la care aș recomanda să aruncați o privire: TSplitView este un container pentru alte controale care pot fi deschise și închise, similar cu TMultiView în FireMonkey TRelativePanel este un panou de aspect care vă permite să poziționați și să aliniați obiectele copil în raport cu celălalt sau cu panoul părinte TToggleSwitch oferă două stări, pornit și oprit TDatePicker și TTimePicker sunt controale moderne de selectare a datei și a orei TCalendarView și TCalendarPicker oferă vizualizări de lună, an și decenii TSearchBox este un control de editare care oferă funcții de căutare TActivityIndicator oferă un indicator rotativ animat pentru utilizare în aplicațiile Windows 10 TCardPanel este o componentă specializată care gestionează o colecție de carduri TStackPanel este un control al containerului care vă permite să aliniați automat toate controalele parentale vertical sau orizontal, păstrând setările personalizate pentru înălțime și lățime ale fiecărui control. Solicită oferă personalizată RAD Studio! Folosind stiluri, este foarte ușor să schimbați complet aspectul aplicației dvs. VCL. Pentru a seta un stil pentru aplicația VCL, selectați stilul în Proiect> Opțiuni> Aplicație> Aspect. Puteți alege dintre mai multe stiluri VCL Windows 10 încorporate sau să descărcați altele prin intermediul pachetului GetIt Package Manager (Instrumente> Manager pachet GetIt) din categoria Stiluri. De asemenea, oferim multe stiluri Windows încorporate pentru FireMonkey și cele personalizate pe care le puteți descărca prin intermediul pachetului GetIt Manager și se pot aplica aplicației Windows FireMonkey folosind TStyleBook.

Read More

Promoție Embarcadero de Iarna

Începem noul an în forță cu o promoție Embarcadero pentru soluțiile RAD Studio, Delphi si C++ Builder, valabilă până pe data de 31 Ianuarie 2020! Pe parcursul lunii Ianuarie 2020, toți cumpărătorii licențelor RAD Studio, Delphi sau C++ Builder primesc 2 ani de mentenanță și suport în loc de un an, inclus standard. Valoarea suportului anual fiind de până la 20% din pretul licenței respective, în dependență de ediție. Solicitați oferta personalizată! Ediția 10.3.3 Rio este cea mai recentă ediție disponibilă la momentul actual, oferind caracteristici infinite de dezvoltare a aplicațiilor cross-platform cu supportul platformelor ceel mai populare penru momentul actual, care vă ajută să construiți, să testați și să implimentați aplicații moderne rapid și în limita bugetului. Promoție Embarcadero este administrată de către partenerul oficial Embarcadero în România, compania Dimensional Data. RAD Studio 10.3 Release 3 builds on the feature set of 10.3, 10.3.1 and 10.3.2 by adding new capabilities throughout the product. Delphi 10.3.3, C++Builder 10.3.3 and RAD Studio 10.3.3 are now available to download for any active Update Subscription customer. With Release 3, developers can target the Google Play Store with 64-bit versions of their FireMonkey Delphi apps, simplify their multi-tier application development and deployment of RAD Server through a pre-built Docker image and build C++ and Delphi applications for iOS 13 and Delphi apps for macOS Catalina. Developers can also access over 70+ data sources with a newly included Enterprise Connector subscription license for Enterprise and Architect edition users.  RAD Studio 10.3 Release 3 also has an extensive quality focus, addressing over 180 customer requests in areas like App Tethering, FireMonkey mobile platforms, C++ compiler and toolchain, IDE responsiveness and more. See below for additional details.  Product trials for 10.3.3 are now available and the updated product builds are live in the online store. Customers on Update Subscription can download and install RAD Studio 10.3.3 today using their existing licenses. An email notification with download links will also be provided to everyone current on subscription.  Key RAD Studio 10.3.2 features include: Delphi Android 64-bit Support iOS 13 and macOS Catalina Support  RAD Server Docker Deployment  Enterprise Connectors in Enterprise & Architect Edition Quality and Performance Improvements  The 10.3.3 release includes around 180 quality improvements, benefiting around 375 different customers.

Read More

8 Best Cross-Platform Dev Tools for Mobile App

Mobile applications are no longer a luxury, but have become a necessity of day to day life. One of the biggest challenges that app developers faced before was creating applications that work well on multiple platforms. Not anymore; here we are sharing the top 9 cross-platform dev tools for mobile app development tools that will help in designing cutting edge and productive apps in a short duration of time. 8. Codename One This cross-device platform helps in developing industry-based applications. The platform supports rapid application development. The developer can write code in Java and the application will be tested and verified with Codename One’s simulator devices and test automation tools. The framework supports popular IDEs like NetBeans, Eclipse, and IntelliJ IDEA. The most interesting feature about its build server is that the developer can build native iOS apps as well as native Windows apps without a Mac machine or Windows PC. The platform is recommended for developing iOS apps. Cons: Codename’s graphic UI does not match the requirements of large projects and its visual themes are not updated. Another major flaw is that all the event handlers are stored in a single file, which makes the development part more cumbersome. 7. PhoneGap This open-source platform can make building cross-platform apps a lot easier. The tool works best for mobile applications that do not rely on the device’s native features for performance. A product of Adobe, one can use it to translate code from HTMT5, CSS, and JavaScript. The PhoneGap platform allows the developer to design app for platforms like iPhone, Android, Windows, and BlackBerry. This free resource is high in demand among developers due to its features and support that it offers. Cons: The only limitation in this tool is it is not suitable for graphics-intensive apps. 6. Appcelerator This tool makes it possible for coders to create cross-platform apps with speed. The tool deploys a JavaScript codebase. The plus point of this tool is it is extensible and open. The developer can create apps for platforms like iOS, Android, and BlackBerry; it even supports HTML5 and hybrid apps. The Appceleratortool has an open-source SDK and supports more than 5,000 devices and OS APIs, Eclipse-based IDE Studio, and the MVC framework Alloy. Cons: The only disadvantage that we have come across so far about the tool is its support team, especially the developer community, which is slow in response. 5. Sencha Ext JS The Sencha Touch platform is an ideal choice for a cross-platform mobile app framework. The framework allows developers to build cutting-edge apps Cons: The native looking themes are limited. The commercial licensing feature is not easy to comprehend. 4. Monocross If you need Dev Tools for Mobile App to build interactive and interesting apps for smartphones and tablets, then Monocross is the framework is for you. This open-source, cross-platform framework supports C#, Microsoft, .NET, and the Mono framework. What makes this tool interesting is that it gives the developer full access to the native device APIs while still coding in C#. Cons: The document and support for the Monocross framework are few in number on the internet, so developers may find themselves in a tricky situation while developing the app, as they don’t have enough resources to learn about the framework. 3. RAD Studio You can create apps for Android devices including phones, tablets, and now wearables like Smart Watches with RAD Studio. Develop Android […]

Read More

4 Best IDE’s for Android App Development

An IDE or Integrated Development Environment is a comprehensive solution that gives the opportunity to the mobile app developers to perform the software development cycle continuously and at a faster pace. The development cycle includes design, writing, compiling, test and debug the code. Specifically for Android app development, Google has given Android Studio IDE that is derived from IntelliJ IDEA. For rapid development, it’s recommended for mobile app developers to use IDE’s. So, here is a list of the best free IDE for Android app development: 1. Visual Studio – Xamarin Xamarin was launched in 2011 which is the best free Integrated Development Environment or IDE. Delivering an enterprise-quality, cross-platform approach, Xamarin has become the most popular integrated environment developed for iOS, Android, and Windows. Visual Studio is the best tool for mobile developers. Microsoft not only includes built-in services but also gives tools to manage small to large teams, build services, and manage versions. Platform: Mobile and desktop solution with C# in one integrated development environment or IDE and deploy to iOS, Android, and Windows. Test Cloud: Has the power of continuous integration in the cloud allowing the internal and external teams to test the code. Insights: The usage of the app and the latest trends. The improvement of the core tools for delivery is always on priority. The team members include UI/UX, quality analyst, deployment, steady-support and validation of success. 2. Android Studio Developed by Google, Android Studio is an allrounder integrated development environment that allows the Android developers to get what they desire without an Integrated Development Environment or IDE. Android has Gradle-base support that has features like visual layout editor, intelligent code editor, real-time profilers and APK analyzer. It acts just like any other Java IDE in terms of error investigating and file hierarchy. 3. IntelliJ IDEA for Android App Development Having a clean and exquisite interface, it specializes in enterprise web and mobile app development with the help of Java, Scala, Kotlin, Groovy and many different frameworks that are for Android application development. The detailed documentation helps in seamless integration which is easy to understand. Multiple plugins are available to perform any task. The framework based assistance, productivity boosters, unobtrusive intelligence, duplicates, and inspections are provided with the IDE. Using this IDE, you can do in-depth coding, quick navigation, and error analysis. In the community edition of IntelliJ IDEA can be accessed free to develop JVM and Android app development but in the Ultimate Edition that can be accessed at a cost for out of box applications. Solicită ofertă 4. Eclipse IDE It is one of the most popular IDES of Android apps. The open-source software is free to use. Released under the Eclipse Public License, it holds a large community having plenty of plugins and configurations. Highly customizable offers full support for Java programming language and XML.

Read More

Promoție Embarcadero de Sărbători

RAD Studio, Delphi și C++ Builder în ofertă. Cu ocazia Sărbătorilor de Iarnă anunțăm MEGA Reduceri pentru soluțiile RAD Studio, Delphi si C++ Builder valabilă până pe data de 30 Decembrie 2019! Ediția PROFESSIONAL a licențelor Embaracdero RAD Studio, Delphi sau C++ Builder, inclusiv 12 luni de mentenanță și suport – cu o reducere de 15%! Ediția ENTERPRISE a licețelor RAD Studio, Delphi sau C++ Builder inclusiv 12 luni de mentenanță și suport – cu o reducere de pe bune de 25%! Ediția ARCHITECT a licețelor RAD Studio, Delphi sau C++ Builder inclusiv 12 luni de mentenanță și suport – cu o reducere de pe bune de 30%! Oferta Sărbătorilor de Iarnă este valabilă pentru comenzi ferme plasate în perioada până pe data de 30 Decembrie 2019 cu condiția achitării contravalorii comenzii plasate. Reducerile de Iarnă expiră în: Heading Solicitați oferta personalizată!

Read More

Delphi and Linux Docker Support

Over the last few years, it has become more and more common to deploy server side solutions (and in fact any type of application) to lightweight containers rather than physical machines or virtual machines, as this allows more flexibility (also in terms of testing), a better way to rebuild the same execution environment, and more scalability. Along with the 10.3.3 release, Embarcadero has started officially supporting deployment of general Linux applications to Docker containers, specifically supporting the deployment to RAD Server. What is Docker Docker is an OS-level virtualization environment that allows for the packaging and delivery of software as a bundle inside a container file. The container files are executed by the Docker Engine and multiple containers can run side by side on the same Linux installation. Inside each container is an OS-level virtualization environment.  What is Docker Hub? Docker provides a service that allows developers and publishers to distribute Docker images to the public or their team. This service is known as Docker Hub and provides a way for users to use repositories where specific Docker Images are located. Docker repositories also allow for Docker Image versioning. Docker Hub contains official images such as the Ubuntu image that can be used as starting points for many users.  RAD Studio Linux Docker Containers The RAD Studio Docker containers paserver, pa-radserver, and pa-radserver-ib are available directly from DockerHub and also as Dockerfiles (on GitHub) plus additional helper utilities. When pulling the containers from DockerHub using Docker the organization name has to be prefixed to the container name such as radstudio/paserver, radstudio/pa-radserver, and radstudio/pa-radserver-ib. For this blog post I’ll start focusing on the first one, radstudio/paserver, which does not include RAD Server. Docker containers have a number of different parameters that you can pass to the Docker Engine when starting an instance. Additionally, custom build and run parameters can be defined when building and running a Docker image. A number of custom parameters have been included in the scripts we provide, including for example the password for PAServer. Docker container instances can be run in the foreground where you can interact with an app that is running within the instance or they can be run detached in the background which behaves like a service.  Docker container instances will not by default store any changes to the instance between runs (they are transient images). However, you can set up a persistent Volume within the Docker instance which will store changes between runs of the Docker container instance. A directory within the Docker instance can be mounted to the Volume and any changes made within that directory persist on the Volume between runs of the Docker instance.

Read More

The 5 Best Python IDE in 2019

1. PyDev IDE PyDev started as an IDE that primarily worked with Eclipse, allowing Pythonista’s write code on Eclipse. But, no it has expanded beyond Eclipse and now can also be integrated with Visual Studio Code. Although free, PyDev integration with VS Code costs $40 after a free trial of 1 month. Features which makes PyDev best IDE:  All basic autocomplete features that other Python IDE’s provide  Code editing directly inside of Eclipse and Visual Studio Code  Django Integration and ease of unit testing Pros and Cons of PyDev IDE Pros  Open-source  Pylint integration  Debuggers and real-time Cons  Limited Support as its crowdfunded  Less features than other enterprise backed IDEs 2. Spyder Python IDE  SPYDER is actually an acronym that stands for Scientific PYthon Development EnviRonment. This IDE is mainly used by the Scientific Python community. Tools and libraries like Numpy, Scipy, Matplotlib, etc are in-built with this Python IDE. Powerful features specifically built for the scientific programming makes Spyder a preferred IDE. It is also one of the best alternatives for Scientific programmers outside of Matlab. Features which makes Spyder the best IDE for Scientific programming:  Integrated Pylint and Pyflakes for analysis Syntax coloring, breakpoints Code Autocomplete and Variable explorer Comes with most of the scientific programming libraries and framework iPython notebook integration Pros and Cons of Spyder IDE: Pros Built to support data analysis and visualization Leverage autocomplete and syntax highlight for efficient programming Helps you leverage iPython notebook to perform a more granular analysis of your code Real-time code analysis and feedback Cons Lack of version control Lack of integration of a debugger 3. PyCharm IDE PyCharm, an IDE developed and maintained by JetBrains is one of the most popular Python IDE. In a survey done by JetBrains, more than 20% of developers mentioned Pycharm as their preferred IDE. As an IDE, PyCharm does much more than just allowing you to import libraries and write code. It is a professional-grade IDE that allows Python developers to write production-grade and maintainable code. Features which makes PyCharm the best Python IDE: Code completion and automatic error detection Smart Code Navigation to help you quickly get to the right class, file, symbols, etc Makes refactoring painless with safe Rename and Delete. Easy to push project-wide changes Easy to implement unit tests and graphical UI tests with Python profiler Automated Deployment CI/CD pipeline integration Database integration – Oracle, SQL Server, PostgreSQL, and other major databases Remote Development – you can write your Python code with PyCharm’s Professional Edition. Pros and Cons of PyCharm IDE Pros Smart features like Autocomplete helping devs write code faster PyCharm supports multiple frameworks Highly reliable for production-grade processes Cons : Costs around $199 per year per user PyCharm has certain performance issues on Windows OS There’s a learning curve associated with PyCharm Requires SSD and considerable memory size  4. Visual Studio Code Once the nemesis of FOSS software, Microsoft has, under the stewardship of Satya Nadella, taken a much friendlier stance towards all things open source. The company may not be about to release the source code to Visual Studio, but in 2015 it did release a source code editor, Visual Studio Code – or Code for short – and open-sourced the core of it. Code has since become rather popular amongst developers, and it’s a fine choice […]

Read More

FLASH RIO 10.3.3 PROMO

EMBARCADERO RIO 10.3.3 PROMO Cu ocazia lansarii Relizului 3 a versiunii Embarcadero RIO 13.3 se anunță promoția RIO 10.3.3 PROMO Flash pentru soluțiile RAD Studio, Delphi si C++ Builder valabilă până pe data de 29 Noiembrie 2019! Ediția PROFESSIONAL a licențelor Embaracdero RAD Studio, Delphi sau C++ Builder, inclusiv 12 luni de mentenanță și suport – cu o reducere de 15%! Ediția ENTERPRISE a licețelor RAD Studio, Delphi sau C++ Builder inclusiv 12 luni de mentenanță și suport – cu o reducere de pe bune de 25%! Ediția ARCHITECT a licețelor RAD Studio, Delphi sau C++ Builder inclusiv 12 luni de mentenanță și suport – cu o reducere de pe bune de 30%! Oferta RIO 10.3.3 PROMO este disponibilă pentru comenzi ferme plasate în perioada 23 Noiembrie 2019 – 29 Noiembrie 2019 cu condiția achitării contravalorii comenzii plasate. Până la expirarea ofertei au mai ramas: Solicitați oferta personalizată! Ediția 10.3.3 Rio este cea mai recentă ediție disponibilă la momentul actual, oferind caracteristici infinite de dezvoltare a aplicațiilor cross-platform cu supportul platformelor ceel mai populare penru momentul actual, care vă ajută să construiți, să testați și să implimentați aplicații moderne rapid și în limita bugetului. RAD Studio 10.3 Release 3 builds on the feature set of 10.3, 10.3.1 and 10.3.2 by adding new capabilities throughout the product. Delphi 10.3.3, C++Builder 10.3.3 and RAD Studio 10.3.3 are now available to download for any active Update Subscription customer. With Release 3, developers can target the Google Play Store with 64-bit versions of their FireMonkey Delphi apps, simplify their multi-tier application development and deployment of RAD Server through a pre-built Docker image and build C++ and Delphi applications for iOS 13 and Delphi apps for macOS Catalina. Developers can also access over 70+ data sources with a newly included Enterprise Connector subscription license for Enterprise and Architect edition users.  RAD Studio 10.3 Release 3 also has an extensive quality focus, addressing over 180 customer requests in areas like App Tethering, FireMonkey mobile platforms, C++ compiler and toolchain, IDE responsiveness and more. See below for additional details.  Product trials for 10.3.3 are now available and the updated product builds are live in the online store. Customers on Update Subscription can download and install RAD Studio 10.3.3 today using their existing licenses. An email notification with download links will also be provided to everyone current on subscription.  Key RAD Studio 10.3.2 features include: Delphi Android 64-bit Support iOS 13 and macOS Catalina Support  RAD Server Docker Deployment  Enterprise Connectors in Enterprise & Architect Edition Quality and Performance Improvements  The 10.3.3 release includes around 180 quality improvements, benefiting around 375 different customers.

Read More