Realm with Content Provider
So, I've been used Realm for a while. For now, I have a task to share the login data with my other apps. Since the login data is stored using Realm. I choose to use Content Provider. I found an example: https://speakerdeck.com/androhi/realm-with-contentprovider Unfortunately, I was unable to make it work. This is my Content Provider in app A static final String[] sColumns = new String[]{ "LoginResultData" }; public Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder) { Realm mRealm = Realm