Audio stops working after receiving call on iOS

2017-06-13 Thread douglasmccarroll
Hi All, In my Apache Flex app (Flex 4.16, AIR 25) running on iOS, all audio stops working if/when the user receives a phone call, or even if the phone just rings once. If the user then leaves the app, i.e. presses the phone's home key, then returns, the problem goes away. I'm guessing that I

Re: Android Images Rotated

2017-06-13 Thread Erik J. Thomas
Hey Paul: Your suggestion solves my problem perfectly! The exif info gives me an "Orientation" property that is either 1,3, 6 or 8 for the four possible camera orientations when taking a photo, so I am able to rotate the image to be upright in all cases. Wonderful! Thanks so much! Erik > On

Re: Android Images Rotated

2017-06-13 Thread Erik J. Thomas
Hey leokan23: I was trying to avoid using Camera since CameraUI provides so much free functionality. If I can find no other way, I'll use this pattern as you suggested instead of CameraUI. Thanks! Erik > On Jun 13, 2017, at 2:55 AM, leokan23 wrote: > > Hi, > > I had

Re: Android Images Rotated

2017-06-13 Thread Paul Moreau
I had the same issue and solved it by using this library to get the ExifInfo of the image and getting the true orientation from that: https://github.com/cantrell/ExifExample However I have since received a report from an Android 7 user complaining of orientation issues that I haven't had time to

Re: Android Images Rotated

2017-06-13 Thread leokan23
Hi, I had similar problems to one of our shelfie apps. I solved the problem on android using the following code: https://pastebin.com/f1NvTyLD This code only uses the front camera and rotates it to work for Android. An alternative could also be Camera ANE from