ANE : Access of classes in Android.os
Hi,
Working on an ANE and am hitting a seemingly insurmountable issue;
java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/cast/CastDevice;
Well, I checked... And CastDevice _is_ included in my ANE, but...
The problem line of my code calls CastDevice.getFromBundle and that method depends on android.os.Bundle.
However...
The android.os.Bundle is part of android.os and I not only cannot find what I _would_ add to my ANE, I am pretty sure that to do so would be catastrophically bad.
So...
In order to work with this, is there a means for me to make access to the definition of android.os.* possible?
G
