media.show and orientation bug

Im having problems with my app now not working as it should anymore in regards to getting photos from camera or the album on iOS

I have narrowed it down to the build.settings and the orientation. I use landscape for my app but when building it again now it no longer responds when trying to get access to camera or album.

this is the problem:

plist = {  
UIInterfaceOrientation = "UIInterfaceOrientationLandscapeRight",   
 UISupportedInterfaceOrientations = {  
 "UIInterfaceOrientationLandscapeLeft",  
 "UIInterfaceOrientationLandscapeRight" },  
}  

If I use this instead:

plist ={  
UIInterfaceOrientation = "UIInterfaceOrientationPortrait",  
UISupportedInterfaceOrientations = {  
"UIInterfaceOrientationPortrait",  
"UIInterfaceOrientationPortraitUpsideDown" },  
}  

everything works as it should with the camera, except that the rest of my app now looks like crap of course :slight_smile:

So if anyone knows what could be the problem I would be grateful. I have tried different builds of corona - 971, 996, 1013. [import]uid: 17969 topic_id: 35477 reply_id: 335477[/import]

ok, seems I found it myself since other things happened as well. the solution was to add the workaround:

CoronaUseIOS6LandscapeOnlyWorkaround = true,
[import]uid: 17969 topic_id: 35477 reply_id: 141026[/import]

ok, seems I found it myself since other things happened as well. the solution was to add the workaround:

CoronaUseIOS6LandscapeOnlyWorkaround = true,
[import]uid: 17969 topic_id: 35477 reply_id: 141026[/import]