You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to file an issue regarding the use of Proguard with the Android mobile sdk.
I wasn't able to find any info related to Proguard on your documentation, neither inside any proguard-rules file in this repository.
Are there any information regarding its setup?
Currently I have to exclude the whole SDK from being processed by Proguard to have it working in a release APK, otherwise most of the parsing were failing due to obfuscation made by Proguard.
-keep class com.bazaarvoice.bvandroidsdk.** { *; }
Any hint will be appreciated. Thank you
SDK version: 8.2.2
SDK components: Conversations
The text was updated successfully, but these errors were encountered:
Yes I confirm it works with the rule you wrote, same as mine, which excludes the whole sdk from Proguard. I was wondering if it's possible to restrict it and avoid obfuscation only on needed classes, to optimize the final APK.
Hello,
I want to file an issue regarding the use of Proguard with the Android mobile sdk.
I wasn't able to find any info related to Proguard on your documentation, neither inside any proguard-rules file in this repository.
Are there any information regarding its setup?
Currently I have to exclude the whole SDK from being processed by Proguard to have it working in a release APK, otherwise most of the parsing were failing due to obfuscation made by Proguard.
-keep class com.bazaarvoice.bvandroidsdk.** { *; }
Any hint will be appreciated. Thank you
SDK version: 8.2.2
SDK components: Conversations
The text was updated successfully, but these errors were encountered: