0

Hie, I haven't explicitly mentioned in pro-guard files but I am receiving this from my Gradle output

Note: the configuration refers to the unknown class 'com.google.android.gms.common.api.internal.BasePendingResult.ReleasableResultGuardian' Note: the configuration refers to the unknown class 'com.google.android.gms.common.internal.safeparcel.SafeParcelable'

but I haven't mentioned anything in proguard-rules.pro regarding those libraries.

proguard file

Akhil Surapuram
  • 654
  • 1
  • 8
  • 22

1 Answers1

0
-keep public class com.google.android.gms.* { public *; }
-dontwarn com.google.android.gms.**

Put this line in your proguard-rules.pro and after putting this line the error will resolve in Android Studio if you want to enable proguard.