wip soa tools
Some checks failed
/ test_checkout (push) Failing after 1s

This commit is contained in:
Jean-Marie Mineau 2025-07-07 12:38:53 +02:00
parent d369cfb187
commit 65baae4d0d
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
4 changed files with 71 additions and 1 deletions

View file

@ -1,7 +1,13 @@
#let ADB = link(<acr-adb>)[ADB]
#let APK = link(<acr-apk>)[APK]
#let ART = link(<acr-art>)[ART]
#let AXML = link(<acr-axml>)[AXML]
#let DEX = link(<acr-dex>)[DEX]
#let OAT = link(<acr-oat>)[OAT]
#let JAR = link(<acr-jar>)[JAR]
#let IDE = link(<acr-ide>)[IDE]
#let SDK = link(<acr-sdk>)[SDK]
#let XML = link(<acr-xml>)[XML]
#let notation_table = align(center, table(
columns: 2,
@ -9,8 +15,14 @@
table.header(
[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>],
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>],
DEX, [Dalvik Executable, the file format for the bytecode used for applicatiobs by Android <acr-dex>],
IDE, [Integrated Development Environment, a software providing tools for software development <acr-ide>],
JAR, [Java ARchive file, the file format used to store several java class files. Sometimes used by Android to store #DEX files instead of java classes <acr-jar>],
OAT, [Of Ahead Time, an ahead of time compiled format for #DEX files <acr-oat>]
OAT, [Of Ahead Time, an ahead of time compiled format for #DEX files <acr-oat>],
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>],
))