Reputation: 668
I have two separate applications but I wanted to use some bits and pieces from one app in my main app. I added another app as library to my main app and I declared intents in the main apps manifest file but I am getting NoClassDefFoundError.
In android world what's the best way to work with multiple apks or libraries?
Please help.
Upvotes: 0
Views: 51
Reputation: 23891
You need to use APK Expansion Files. Please visit this link for more explanation.
http://developer.android.com/google/play/expansion-files.html
Upvotes: 1