CameraRoll Android 6 issue
Im having a issue with CameraRoll on Android 6 version (specifically Samsung Galaxy S6 with new Android 6 update installed)
When the photo is selected, the the imagepromise never loads. It worked perfectly before the update.
It also works perfectly on my other devices that dont have Android 6 installed.
I used exactly the same code like here for loading: Uploading images from CameraRoll and CameraUI | Adobe Developer Connection
I also tried to load the promise like this once photo is selected:
var loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onMediaLoaded );
loader.contentLoaderInfo.addEventListener(ErrorEvent.ERROR, onError);
loader.loadFilePromise(imagePromise);
but with exactly the same result.
It not really a AIR 22 specific issue, its also happens for AIR 21.
Is there something else i can try?
