From d7b2b75f1e397306fbc94a3a00da4474d10b9818 Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Mon, 24 Feb 2025 15:49:32 -0800 Subject: [PATCH] AIRPlatform: default AIR SDK version to 32.0 instead of 28.0 You can't get 28.0 from Adobe anymore, but you can get 32.0 --- tools/platforms/AIRPlatform.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/platforms/AIRPlatform.hx b/tools/platforms/AIRPlatform.hx index 1cc7e7155..f9a981afa 100644 --- a/tools/platforms/AIRPlatform.hx +++ b/tools/platforms/AIRPlatform.hx @@ -258,7 +258,7 @@ class AIRPlatform extends FlashPlatform var context = generateContext(); context.OUTPUT_DIR = targetDirectory; - context.AIR_SDK_VERSION = project.config.getString("air.sdk-version", "28.0"); + context.AIR_SDK_VERSION = project.config.getString("air.sdk-version", "32.0"); var buildNumber = Std.string(context.APP_BUILD_NUMBER);