Я пытаюсь вставить response.body()
, что означает User
в комнате, но я получаю
A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 23714 (AsyncTask #2)
Отображается в RecyclerView
, но когда я пытаюсь его кешировать, происходит сбой приложения.
Вот код
private void refreshUser() {
executor.execute(new Runnable() {
@Override
public void run() {
try {
retrofit2.Response<User> response=webservice.getUser("1").execute();
User fromNetwork=response.body();
mUserDao.insertUser(fromNetwork);
} catch (IOException e) {
e.printStackTrace();
}
}
});
}
Я следую этому руководству по моему приложению.
Это метод DAO
@Insert(onConflict = OnConflictStrategy.REPLACE)
void insertUser(User user);
Сущность пользователя (тело ответа)
@Entity(tableName = "user_table")
public class User {
@PrimaryKey
@NonNull
private String uid;
@NonNull
@ColumnInfo(name = "password")
private String password;
@SerializedName("first_name")
@ColumnInfo(name = "first_name")
private String firstName;
@SerializedName("last_name")
@ColumnInfo(name = "last_name")
private String lastName;
@ColumnInfo(name = "role")
private int role;
@ColumnInfo(name = "topic")
private String topic;
@ColumnInfo(name = "lab")
private String lab;
//constructor, setters and getters
}
И вид модели
public class UserViewModel extends AndroidViewModel {
private AppRepository mRepository;
public UserViewModel(Application application) {
super(application);
mRepository=new AppRepository(application);
}
public LiveData<User> getUser(String username) {
return mRepository.getUser(username);
}
}