I'm working with external library. Now my android application has two projects:
"MyAndroidApp" and "HelperLibrary".
"MyAndroidApp" is main application project and "HelperLibrary" contains my model classes. In "HelperLibrary", I need to implement "android.os.Parcelable
" interface.
In fact, I can find "Parcelable" in "MyAndroidApp" project but cannot find at "HelperLibrary" project.
How can I add android package to "HelperLibrary" project?
Any helps would be very appreciated.