Parse Android Caused by: java.lang.IllegalStateException:

Mọi người cho mình cách xử lý với. Mìn xài android studio 1.5

java.lang.RuntimeException: Unable to start activity ComponentInfo{supercalculate.canhquy.pecc4.supercalculate/supercalculate.canhquy.pecc4.supercalculate.Main4Activity}: java.lang.IllegalStateException: `Parse#enableLocalDatastore(Context)` must be invoked before `Parse#initialize(Context)`
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2211)
 at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2261)
at android.app.ActivityThread.access$600(ActivityThread.java:141)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5103)
at java.lang.reflect.Method.invokeNative(Native Method)
 at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)
 Caused by: java.lang.IllegalStateException: `Parse#enableLocalDatastore(Context)` must be invoked before `Parse#initialize(Context)`
 at com.parse.Parse.enableLocalDatastore(Parse.java:68)
 at supercalculate.canhquy.pecc4.supercalculate.Main4Activity.onCreate(Main4Activity.java:110)
at android.app.Activity.performCreate(Activity.java:5133)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2175)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2261) 
at android.app.ActivityThread.access$600(ActivityThread.java:141) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256) 
 at android.os.Handler.dispatchMessage(Handler.java:99) 
at android.os.Looper.loop(Looper.java:137) 
at android.app.ActivityThread.main(ActivityThread.java:5103) 
at java.lang.reflect.Method.invokeNative(Native Method) 
at java.lang.reflect.Method.invoke(Method.java:525) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 
at dalvik.system.NativeStart.main(Native Method)

Đoạn này đặt trong onCreate

Parse.initialize(this);
Parse.enableLocalDatastore(this);


ParseObject testObject = new ParseObject("TestObject");
testObject.put("PlayerName", name);
testObject.put("Score2", score);
testObject.saveInBackground();

Câu trên có nghĩa là biến đoạn code này:

Thành đoạn code này:

Parse.enableLocalDatastore(this);
Parse.initialize(this);

Nghĩa gần giống thế. Mình làm như bạn rồi ko được.

Parse.enableLocalDatastore(this);
Parse.initialize(this);

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?