You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current Android library does not seem to support multiple Simperium clients in an app since the SQLite database is hardcoded in com.simperium.android class AndroidClient: this.mDatabase = this.mContext.openOrCreateDatabase("simperium-store", 0, (CursorFactory)null);
Multiple client supports works in IOS library since multiple managed object contexts are used via the CoreData framework.
Multiple clients is sometimes required to implement specific functionality.
Requesting to implement support for this.
The text was updated successfully, but these errors were encountered:
Current Android library does not seem to support multiple Simperium clients in an app since the SQLite database is hardcoded in com.simperium.android class AndroidClient:
this.mDatabase = this.mContext.openOrCreateDatabase("simperium-store", 0, (CursorFactory)null);
Multiple client supports works in IOS library since multiple managed object contexts are used via the CoreData framework.
Multiple clients is sometimes required to implement specific functionality.
Requesting to implement support for this.
The text was updated successfully, but these errors were encountered: