ParseInterceptors-Android
ParseInterceptors-Android copied to clipboard
Parse Network Interceptor Debugging
@TomWFox Can you please archive this repo as well?
Here is how I'm initializing parse: ``` Parse.initialize(new Parse.Configuration.Builder(context) .applicationId("...") .clientKey("...") .server("...") .addNetworkInterceptor(new ParseStethoInterceptor()) .build()); ``` and Stetho is initialized before Parse using `Stetho.initializeWithDefaults(context)`. Whenever I try to call `ParseObject.deleteInBackground()`...