chemerisuk / cordova-plugin-idfa

Cordova plugin to get Advertising ID (IDFA or AAID)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Plugin throws error on release build

amitchoubey opened this issue · comments

We have integrated this plugin for a cordova based hybrid application and plugin working fine for the debug build but same when we are preparing build to release on play store that build is not working.

Please let me me know if any thing has to be added in progaurd.txt file for android.

It looks like this plugin uses https://github.com/chemerisuk/cordova-support-android-plugin, and the README for that says to include the lines below, which worked for me.

-keepclassmembers class ** {
  @by.chemerisuk.cordova.support.CordovaMethod *;
}
-keep public enum by.chemerisuk.cordova.support.ReflectiveCordovaPlugin$** {
    **[] $VALUES;
    public *;
}