Naresh Katta

Results 23 comments of Naresh Katta

The support for file system is changed from Nougat. Add ``` android:requestLegacyExternalStorage="true ``` In application tag and try once.

https://github.com/zetbaitsu/Compressor/issues/164#issuecomment-688443488 Check this out.

Full crash log might help to resolve issue. Add few more points like which version you are using. Where you are getting this error etc. If you are trying to...

Check this gist https://gist.github.com/nareshkatta99/5fbe8a37799d5a48ea9de32af4a69ea9 Sample project is [here](https://github.com/nareshkatta99/java_compressor_example)

Is the folder being created?

It would be more helpful if you give some crash stack trace. Possible causes would be: The file is not opened properly from URI. File not readable some times. If...

You can override `public void onSuccess(int statusCode, cz.msebera.android.httpclient.Header[] headers,org.json.JSONArray response)` Method. Source: https://loopj.com/android-async-http/doc/ So your MainActivity code may look like YelpClient client = YelpClientApp.getRestClient(); client.search("food", "san francisco", new JsonHttpResponseHandler() {...

In my apps, What I did was if the returned list size is less than required list size, then I made a page number negative. before sending server request I'm...

Yes it will some times. We faced the same issue. You should use context.getApplicatinContext when it requires to place some thing global level. You can use them for things like...