30/09/2018, 19:11

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)

Lecanhquy viết 21:23 ngày 30/09/2018

Đ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();"

ComponentInfo{supercalculate.canhquy.pecc4.supercalculate/supercalculate.canhquy.pecc4.supercalculate.Main4Activity}: java.lang.IllegalStateException: Parse#enableLocalDatastore(Context) must be invoked before Parse#initialize(Context)

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

    Parse.enableLocalDatastore(this);```

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

Parse.enableLocalDatastore(this);
Parse.initialize(this);
Lecanhquy viết 21:21 ngày 30/09/2018

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

Dương Nguyễn Văn viết 21:21 ngày 30/09/2018

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

Bài liên quan
0