From 5d94ed4e8b9be21441df1b36d20654031b2a6676 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 10 Mar 2026 08:33:40 -0700 Subject: [PATCH] fix(android): add dontwarn for Google Play Core missing classes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flutter references Play Core split-install APIs that aren't bundled in standard APK builds — suppress R8 errors with dontwarn. Co-Authored-By: Claude Sonnet 4.6 --- it0_app/android/app/proguard-rules.pro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/it0_app/android/app/proguard-rules.pro b/it0_app/android/app/proguard-rules.pro index 3fb282c..8759482 100644 --- a/it0_app/android/app/proguard-rules.pro +++ b/it0_app/android/app/proguard-rules.pro @@ -15,3 +15,6 @@ # BouncyCastle — referenced by HMS security but not shipped -dontwarn org.bouncycastle.** + +# Google Play Core (deferred components) — not used in standard APK builds +-dontwarn com.google.android.play.core.**