parse.com not working after proguard

后端 未结 3 1483
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-14 22:55

I\'m using Parse.com features in my app, everything works great on debugging mode. As soon as I generate a signed apk in release mode, I have a killing wait sometimes up to

3条回答
  •  时光说笑
    2021-01-14 23:38

    Try the following if you have Apache http-core and http-mime along with Parse library:

    -keep class org.apache.** { *; }
    -keep class com.parse.** { *; }
    
    -dontwarn com.parse.**
    -dontwarn org.apache.**
    -dontwarn com.squareup.**
    

提交回复
热议问题