From db9771f3d90903c5bd7a5efbdf4e90d222cf894f Mon Sep 17 00:00:00 2001 From: Leonardo Bilck Date: Tue, 21 Jul 2026 01:38:37 -0300 Subject: [PATCH] Bump SuperwallSDK.androidlib compileSdk to 35 superwall-android 2.+ currently resolves to 2.7.21, which pulls in androidx.activity 1.10.1. That artifact's AAR metadata declares minCompileSdk=35, so every Unity Android export now fails at :unityLibrary:SuperwallSDK.androidlib:checkReleaseAarMetadata while the module compiles against android-34. compileSdk only affects compile-time API visibility (not minSdk device support or targetSdk runtime behavior), so this is safe for all consumers - and consumers on current 2.+ resolutions cannot build without it. Co-Authored-By: Claude Fable 5 --- Plugins/Android/SuperwallSDK.androidlib/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Android/SuperwallSDK.androidlib/build.gradle b/Plugins/Android/SuperwallSDK.androidlib/build.gradle index 66beff9..3033345 100644 --- a/Plugins/Android/SuperwallSDK.androidlib/build.gradle +++ b/Plugins/Android/SuperwallSDK.androidlib/build.gradle @@ -13,7 +13,7 @@ apply plugin: 'kotlin-android' android { namespace 'com.superwall.sdk.unity' - compileSdkVersion 34 + compileSdkVersion 35 defaultConfig { minSdkVersion 25