0

I am getting following error in my console, please help me, is there any problem in publishing to app store.(i apologize for my English & this is my first app using android studio) MoreInfo

Information:Gradle tasks [:app:assembleRelease]
Error:warning: Ignoring InnerClasses attribute for an anonymous inner class
Error:(android.support.v4.app.ab) that doesn't come with an
Error:associated EnclosingMethod attribute. This class was probably produced by a...
Test_Me
  • 29
  • 6

1 Answers1

1

Just add these lines to the ProGuard config (app/proguard-rules.pro)

-keepattributes EnclosingMethod
-keepattributes InnerClasses
-dontoptimize
madless
  • 84
  • 6
  • Thanks for your answer i have to false from my gradle " minifyEnabled false" from true +1 for your partial help – Test_Me Oct 28 '16 at 06:37