correction background
Some checks failed
/ test_checkout (push) Failing after 22s

This commit is contained in:
Jean-Marie Mineau 2025-08-06 00:25:42 +02:00
parent f5145237ce
commit 2e52599a7c
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
7 changed files with 92 additions and 71 deletions

View file

@ -11,6 +11,7 @@
#let NDK = link(<acr-ndk>)[NDK]
#let SDK = link(<acr-sdk>)[SDK]
#let XML = link(<acr-xml>)[XML]
#let ZIP = link(<acr-zip>)[ZIP]
#let notation_table = align(center, table(
columns: 2,
@ -19,7 +20,7 @@
[Acronyms], [Meanings],
),
ADB, [Android Debug Bridge, a tool to connect to an Android emulator of smartphone to run commands, start applications, send events and perform other operations for testing and debuging purpose <acr-adb>],
API, [Application Programming Interface, in the Android echosystem, it is a set of classes with known method signatures that can be called by an application to interact with the Android framework <acr-api>],
API, [Application Programming Interface, in the Android ecosystem, it is a set of classes with known method signatures that can be called by an application to interact with the Android framework <acr-api>],
APK, [Android Package, the file format used to install application on Android. The APK format is an extention of the #JAR format <acr-apk>],
ART, [Android RunTime, the runtime environement that execute an Android application. The ART is the successor of the older Dalvik Virtual Machine <acr-art>],
AXML, [Android #XML. The specific flavor of #XML used by Android. The main specificity of AXML is that it can be compile in a binary version inside an APK <acr-axml>],
@ -31,4 +32,5 @@
NDK, [Native Development Kit, the set of tools used to build C and C++ code for Android <acr-ndk>],
SDK, [Software Development Kit, a set of tools for developing software targeting a specific platform. In the context of Android, the version of the SDK can be associated to a version of Android, and application compatibility is defined in term of compatible SDK version <acr-sdk>],
XML, [eXtensible Markup Language, a language to store data <acr-xml>],
ZIP, [ZIP is an archive format. A ZIP file contains other files, that may be compressed <acr-zip>],
))