diff options
author | 2024-06-25 16:10:27 +0200 | |
---|---|---|
committer | 2024-09-12 13:21:17 +0200 | |
commit | cdf8fd726eefe6a78876a712a6b62d1e27df01d0 (patch) | |
tree | 19a77b7ad7caeba6c716f67ce6c6506fede03272 /scripts/gen_build_prop.py | |
parent | 3dbfab1d9169fed50fc7013521d0a8c1448ac6f4 (diff) |
Handle RELEASE_PLATFORM_SDK_MINOR_VERSION
Teach Soong about the new RELEASE_PLATFORM_SDK_MINOR_VERSION build flag
which is used to set the minor Android API level.
Bug: 350458259
Test: m
Ignore-AOSP-First: internal to keep in sync with related CLs that are not AOSP first
Change-Id: I1f715ed9eeeb98ac526299ae5bc1be5b44b7ef19
Diffstat (limited to 'scripts/gen_build_prop.py')
-rw-r--r-- | scripts/gen_build_prop.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/gen_build_prop.py b/scripts/gen_build_prop.py index c08a3fd42..89e6f8d10 100644 --- a/scripts/gen_build_prop.py +++ b/scripts/gen_build_prop.py @@ -196,6 +196,7 @@ def generate_build_info(args): print(f"ro.build.display.id?={config['BuildDesc']}") print(f"ro.build.version.incremental={config['BuildNumber']}") print(f"ro.build.version.sdk={config['Platform_sdk_version']}") + print(f"ro.build.version.sdk_minor={build_flags['RELEASE_PLATFORM_SDK_MINOR_VERSION']}") print(f"ro.build.version.preview_sdk={config['Platform_preview_sdk_version']}") print(f"ro.build.version.preview_sdk_fingerprint={config['PlatformPreviewSdkFingerprint']}") print(f"ro.build.version.codename={config['Platform_sdk_codename']}") |