media.show() broken on iOS 7?

media.show(media.PhotoLibrary) seems to be broken on iOS 7 on the latest daily build (1153), even when building for iOS 7 Beta.

The app instantly crashes on the device when trying to call that API.

Is this happening for anyone else?

Yes, same issue here.

I ran into a problem with a non-Corona app that I use that takes photos and it was having problems with iOS7 Beta 2.  I’ve not tried it with Beta 3 yet. 

Thanks for the report, we’ll take a look.

Yes, same issue here.

It does actually work. The problem is related to the build settings, it must include a valid orientation. This was no problem on iOS 6. This is working:

orientation = 

        {

             default = “landscapeRight”,

content = “landscapeRight”,

                supported = 

                {

                   “landscapeLeft”, “landscapeRight”, “portrait”

                }

        },   

I ran into a problem with a non-Corona app that I use that takes photos and it was having problems with iOS7 Beta 2.  I’ve not tried it with Beta 3 yet. 

Thanks for the report, we’ll take a look.

It does actually work. The problem is related to the build settings, it must include a valid orientation. This was no problem on iOS 6. This is working:

orientation = 

        {

             default = “landscapeRight”,

content = “landscapeRight”,

                supported = 

                {

                   “landscapeLeft”, “landscapeRight”, “portrait”

                }

        },