From c47437265bf4af095e75ac75c64543f6535c589c Mon Sep 17 00:00:00 2001 From: davidliu Date: Wed, 8 Oct 2025 14:32:15 +0900 Subject: [PATCH] feat: add consumer proguard rules for android --- android/build.gradle | 2 +- android/consumer-rules.pro | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 android/consumer-rules.pro diff --git a/android/build.gradle b/android/build.gradle index bf04cea..d606404 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,7 +34,7 @@ android { targetSdkVersion getExtOrIntegerDefault('targetSdkVersion') versionCode 1 versionName "1.0" - + consumerProguardFiles 'consumer-rules.pro' } buildTypes { diff --git a/android/consumer-rules.pro b/android/consumer-rules.pro new file mode 100644 index 0000000..9b0e148 --- /dev/null +++ b/android/consumer-rules.pro @@ -0,0 +1 @@ +-keep class com.livekit.** { *; } \ No newline at end of file