All checks were successful
/ test_checkout (push) Successful in 40s
16 lines
758 B
Typst
16 lines
758 B
Typst
#let APK = link(<acr-apk>)[APK]
|
|
#let DEX = link(<acr-dex>)[DEX]
|
|
#let OAT = link(<acr-oat>)[OAT]
|
|
#let JAR = link(<acr-jar>)[JAR]
|
|
|
|
#let notation_table = align(center, table(
|
|
columns: 2,
|
|
align: center+horizon,
|
|
table.header(
|
|
[Acronyms], [Meanings],
|
|
),
|
|
APK, [Android Package, the file format used to install application on Android. The APK format is an extention of the #JAR format <acr-apk>],
|
|
DEX, [Dalvik Executable, the file format for the bytecode used for applicatiobs by Android <acr-dex>],
|
|
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>]
|
|
))
|