I have an app that shares images from url. Last android update, I got message from instagram \"Unable to load image\" when I want to share an image in instagram feed.
Ok, I searched and found a solution. I do not know this is right way but solved my problem..
StrictMode.VmPolicy.Builder builder = new StrictMode.VmPolicy.Builder(); StrictMode.setVmPolicy(builder.build());
Found solution in this answer.