Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Categoria: Android

Delphi HTTP Clear Text Traffic on FMX Android

Ambiente di sviluppo Delphi 11.1 ( uso questa architettura dalla versione 10.0) Android 12 32bit/64bit compatiblità dalla versione 9 di Android In tanti casi può essere necessario accedere a contenuti HTTP in rete dove non è disponibile l’SSL ad esempio: Un server all’interno della tua rete locale, on in VPN Hai un httpServer direttamente nella…
Leggi tutto

Delphi 11 – Firebase Cloud Messaging ( FCM ) – iOS app Push Notification

Obiettivi: integrare le push notification Firebase (FCM) in una app realizzata con Delphi per iOS senza l’ausilio di librerie di terze parti. Avere lo stesso base code nella applicazione e nei server per la gestione delle push in Delphi uguale a quello utilizzato per Android.   Ambiente di test utilizzato: VM Delphi 11 Alexandria Ent.…
Leggi tutto

Delphi 11 – Firebase Cloud Messaging ( FCM ) – Android Push Notification

RAD Studio 11 Alexandria push notification con Android tramite Firebase. Obiettivi:  1 – Ricevere le notifiche push sulla mia app Android 2 – Avere un sistema server di invio delle notifiche push   Presupposti da cui sono partito per questo test: 1 – Avere un account Google Firebase: https://console.firebase.google.com/ 2 – Avere una app pubblicata…
Leggi tutto

Detect device orientation change Delphi Firemonkey

To detect device orientation change, you can use the following example:

Xtumble4Delphi – not a simple API framework

Xtumble library for Delphi Xtumble4Delphi is native delphi library, cross platform ( Windows, Android, iOS, macOSX, Linux64) that allow you to integrate all cloud functonalitty of the XTumble platform in your application. If you create an XTumble Account you can have a dedicated ERP, e-commerce, Cluod Drive, CRM Mail with SMTP and POS system in the cluod. Creating an…
Leggi tutto

Android App Version with Delphi

Using the JPackageInfo class is simple to retrive the version of your Android application. This class is already wrapped by Embarcadero in the following unit: Androidapi.JNI.GraphicsContentViewText {code} {$IFDEF ANDROID} var PackageManager: JPackageManager; PackageInfo: JPackageInfo; begin PackageManager := SharedActivityContext.getPackageManager; PackageInfo := PackageManager.getPackageInfo (SharedActivityContext.getPackageName, 0); result := JStringToString(PackageInfo.versionName); End; {$ENDIF}