Status Update
Comments
al...@gmail.com <al...@gmail.com> #2
The class loader object in the launch Intent through setExtrasClassLoader() isn't be parceled and pass to ActivityManager. So, the Intent object read from parcel always get a null class loader and create a PathClassLoader from base class path.
I personally think this behavior is reasonable because your class loader object is in your application space and parcel its address across processes isn't reasonable.
But, we still can work around this by marshall/unmarshall data before/after setting/receiving alarms.
I personally think this behavior is reasonable because your class loader object is in your application space and parcel its address across processes isn't reasonable.
But, we still can work around this by marshall/unmarshall data before/after setting/receiving alarms.
Description
Needed it in our app and noticed there's no convenience function for it and I made one myself. Thought it would be nice to be part of the library.