I just Changed an Image and this Error pops out everytime. I am unable to find for a solution, please provide your Information to solve this.
myTeacherModelLists.add(new MyTeacherModel(R.drawable.sets,"Settings"));
Logcat :
error: failed linking file resources.
Model Class :
package com.ionicframework.schoolzoneint;
public class MyTeacherModel {
Integer images;
String text;
public MyTeacherModel(){
}
public MyTeacherModel(Integer images, String text) {
this.images = images;
this.text = text;
}
public Integer getImages() {
return images;
}
public String getText() {
return text;
}
}