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
any prevision for migration to androidx support library? following the docs https://docs.objectbox.io/livedata-arch.-comp. the observe method from LiveData is highlighted red by the ide (not found). opening the ObjectBoxLiveData class the LiveData class is missing android.arch.lifecycle.LiveData.
//observe not found
model.getNoteLiveData(notesBox).observe(this, new Observer<List<Note>>() {
@Override
public void onChanged(@Nullable List<Note>; notes) {
notesAdapter.setNotes(notes);
}
});
any prevision for migration to androidx support library? following the docs https://docs.objectbox.io/livedata-arch.-comp. the observe method from LiveData is highlighted red by the ide (not found). opening the ObjectBoxLiveData class the LiveData class is missing android.arch.lifecycle.LiveData.