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

Autore: Ivan Revelli

Orologio atomico….

EternityWall ci sta provando ….

Android System APP

Creare una system app con Android ti permette di gestire il sistema come superUtente, per configurare un app di sistema è necessario pubblicarla nella cartella: mount -o rw,remount /system /system/app//.apk https://github.com/maks/system-tools-app/blob/master/AndroidManifest.xml per fare in modo che funzioni bisogna fornirgli un certificato di funzionamento compatibile con il device su cui gigrerà: https://boundarydevices.com/android-security-part-1-application-signatures-permissions/

Delphi FMX – Run APK Installation programmatically

Presentations from Firebird Tour 2017: Firebird Performance and Tuning Linux and Windows

“Firebird Performance”, by Vlad Khorsun, Firebird Project “Tuning Linux, Windows, and Firebird for heavy workload” by Alex Kovyazin, IBSurgeon. Presentations from Firebird Tour 2017: Firebird Performance and Tuning Linux and Windows

Configure RaspAP over Ubuntu 16.04 Server and Apache2

Configure RaspAP over Ubuntu 16.04 Server and Apache2

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}