SDK platform name: change to major.minor version code
The Android SDK contains a platforms/android-<version> directory. Update
the <version> part from the old API level versioning scheme (e.g. "33")
to the new major.minor versioning scheme (e.g. "33.0").
Test: lunch sdk-trunk-eng && m sdk dist && unzip -l out/dist/android-sdk*.zip | grep platforms/
Bug: 399958712
Ignore-AOSP-First: minor SDK development takes place on internal main
Change-Id: Ib9d1665072eb2755289b9cba6b7783d344af6841
diff --git a/core/Makefile b/core/Makefile
index 0407090..5aff5e3 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -7786,8 +7786,8 @@
sdk_platform_dir_name := $(strip \
$(if $(filter REL,$(PLATFORM_VERSION_CODENAME)), \
$(if $(filter $(PLATFORM_SDK_EXTENSION_VERSION),$(PLATFORM_BASE_SDK_EXTENSION_VERSION)), \
- android-$(PLATFORM_SDK_VERSION), \
- android-$(PLATFORM_SDK_VERSION)-ext$(PLATFORM_SDK_EXTENSION_VERSION) \
+ android-$(PLATFORM_SDK_VERSION_FULL), \
+ android-$(PLATFORM_SDK_VERSION_FULL)-ext$(PLATFORM_SDK_EXTENSION_VERSION) \
), \
android-$(PLATFORM_VERSION_CODENAME) \
) \