commit | 5663ebb842412b0235a140656db17025280f9f08 | [log] [tgz] |
---|---|---|
author | Anton Hansson <hansson@google.com> | Fri Nov 12 12:30:55 2021 +0000 |
committer | Anton Hansson <hansson@google.com> | Thu Mar 10 18:43:53 2022 +0000 |
tree | 6e48fefcc9d217b5fdf4ca411fb855f74236b41a | |
parent | acc7bda21cc35a5eafe86495ee3358364d15e7f1 [diff] |
Bump SDK Extension version to 2 This bump includes SdkExtensions and MediaProvider. Generated with the following command: $ gen_sdk \ --database packages/modules/SdkExtensions/gen_sdk/extensions_db.textpb \ --action new_sdk \ --sdk 2 \ --modules MEDIA_PROVIDER,SDK_EXTENSIONS Bug: 222049920 Test: Manual install of MP & SDKExtensions Change-Id: I399c6acdff8a9cb4764c9afe7646c51eaade1b3f
SdkExtensions module is responsible for:
The module is packaged in an apex, com.android.sdkext
, and has several components:
bin/derive_classpath
: a native binary that runs early in the device boot process. It reads individual classpath configs files from the system and other modules, merges them, and defines the definition of *CLASSPATH environ variables.bin/derive_sdk
: native binary that runs early in the device boot process and reads metadata of other modules, to set system properties relating to the extension SDK (for instance build.version.extensions.r
).javalib/framework-sdkextension.jar
: this is a jar on the bootclasspath that exposes APIs to applications to query the extension SDK level.derive_sdk
is a program that reads metadata stored in other apex modules, in the form of binary protobuf files in subpath etc/sdkinfo.pb
inside each apex. The structure of this protobuf can be seen here. The exact steps for converting a set of metadata files to actual extension versions is likely to change over time, and should not be depended upon.
The module exposes a java class SdkExtensions
in the package android.os.ext
. The method getExtensionVersion(int)
can be used to read the version of a particular sdk extension, e.g. getExtensionVersion(Build.VERSION_CODES.R)
.
derive_classpath
service reads and merges individual config files in the /system/etc/classpaths/
and /apex/*/etc/classpaths
. Each config stores protobuf message from classpaths.proto
in a proto binary format. Exact merging algorithm that determines the order of the classpath entries is described in derive_classpath.cpp
and may change over time.
For every new Android SDK level a new extension version should be defined. These are the steps necessary to do that:
derive_sdk.cpp
by:GetSdkLevel
with the new enum setderive_sdk_test.cpp
verifying the new extensions worksSdkExtensions.getExtensionVersion
API support the new extensions.