Kuldip Satpute

Results 5 comments of Kuldip Satpute

I've checked for that already but there no method in Rx2AndroidNetworking class to use perform this... Is there another way to do this Or am I missing something here?

Well I did some G-Search and found this ``` @Override public Flowable postImageViewApiCall(ImageLikeRequest request) { return Rx2AndroidNetworking.post(ApiEndPoint.ENDPOINT_IMAGE_VIEWS) .addHeaders(mApiHeader.getProtectedApiHeader()) .addBodyParameter(request) .build() .getObjectObservable(SingleImageViewResponse.class) .toFlowable(BackpressureStrategy.BUFFER) .onBackpressureBuffer(1000) .delay(3, TimeUnit.SECONDS); } ``` but still its...

3 second was testing number... It's not working so I was increasing time just for checking... Don't know why its not working... Still there is question... But I did this...

`Fatal Exception: java.lang.RuntimeException: Error executing ShaderProgram! at android.filterfw.core.ShaderProgram.process(ShaderProgram.java:123) at android.filterpacks.imageproc.AutoFixFilter.process(AutoFixFilter.java:260) at android.filterfw.core.Filter.performProcess(Filter.java:473) at android.filterfw.core.FilterFunction.execute(FilterFunction.java:80) at android.filterfw.core.FilterFunction.executeWithArgList(FilterFunction.java:97) at android.media.effect.SingleFilterEffect.apply(SingleFilterEffect.java:73) at ja.burhanrashid52.photoeditor.ImageFilterView.applyEffect(ImageFilterView.java:263) at ja.burhanrashid52.photoeditor.ImageFilterView.onDrawFrame(ImageFilterView.java:100) at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1579) at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1278)` Does anyone get the...

It's the Resolution some devices can not handle... I resized the image then it worked... If anyone has the solution please share...