You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 23, 2021. It is now read-only.
Hi,
When I try to run the app, in logcat given this err:
java.lang.NoSuchMethodError: No virtual method setCallWebSocket(Lokhttp3/Call;)V in class Lokhttp3/internal/Internal; or its super classes (declaration of 'okhttp3.internal.Internal' appears in /data/app/com.test-2/base.apk:classes3.dex)
at okhttp3.ws.WebSocketCall.enqueue
in my application :
public class MainApp extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.initialize(....);
LiveQueryClient.init(WS_URL, MY_APP_ID, true);
LiveQueryClient.connect();
}
}