I am new in back{4}app and i tried to use this code:
public void save(View view) {
ParseObject parseObject = new ParseObject("users");
//we will add column
parseObject.put("name","eyal");
parseObject.put("age",29);
parseObject.put("password","123");
//new thread is open to save the info
parseObject.saveInBackground();
}
i am getting this exception:
A/libc: Fatal signal 4 (SIGILL), code 2, fault addr 0xf6f3046e in tid 25170 (ECUTOR-thread-1)
i follow this tutorial: https://parse.com/apps/quickstart#parse_data/mobile/android/native/existing
Can any one help me? I try to run by GenyMotion, in android studio emulator it is working