I have array of objects with base64 code strings(images conveted to base64) stored in database, i want to pass array of objects with intent to update activitys UI. What is the best way to do this, maybe there are other ways to handle this? Now it seems that my picture strings are too big and transaction is rejected.
Class:
public class Action extends SugarRecord implements Parcelable{
String name;//database url https://activities-xxxx.firebaseio.com/
long date;
String description;
String picture;
int actionId;
...
}