parse-sdk-android

com.parse.ParseObject cannot be cast to

允我心安 提交于 2019-12-07 07:58:59
问题 I am developing application which having Parse Platform. To fetch data I am calling ParseCloud.callFunctionInBackground function. I have registered the Parse and its sub class into the Application class like below : public class App extends Application { @Override public void onCreate(){ super.onCreate(); Parse.setLogLevel(Parse.LOG_LEVEL_VERBOSE); OkHttpClient.Builder builder = new OkHttpClient.Builder(); HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor();

com.parse.ParseObject cannot be cast to

耗尽温柔 提交于 2019-12-05 09:53:43
I am developing application which having Parse Platform . To fetch data I am calling ParseCloud.callFunctionInBackground function. I have registered the Parse and its sub class into the Application class like below : public class App extends Application { @Override public void onCreate(){ super.onCreate(); Parse.setLogLevel(Parse.LOG_LEVEL_VERBOSE); OkHttpClient.Builder builder = new OkHttpClient.Builder(); HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor(); httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); builder.networkInterceptors().add