Fix miniplayer position in release build (#4002)

Upon analysis found below error
java.lang.NoSuchMethodException:
  androidx.constraintlayout.motion.widget.KeyAttributes.<init>
Added proguard rules, not able to reproduce the issue
with this change.
This commit is contained in:
Sajal Raj Gautam 2023-06-14 12:42:33 +05:30 committed by GitHub
parent 1e607edec2
commit 96da8e4c3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,3 +106,7 @@
-dontwarn org.conscrypt.**
-dontwarn org.bouncycastle.**
-dontwarn org.openjsse.**
# Fix for miniplayer placing issue in release build
-keep class androidx.constraintlayout.motion.widget.** { *; }
-keepclassmembers class androidx.constraintlayout.motion.widget.** { *; }