2 apps with 2 different bundle id

excuse my language

i have compiled 2 diffrent apps with 2 different bundle id each of them is working perfectly but i found that if i run one of them and suspend it then a i run the other one, both of them freezes.

but if i exit both of them i opened just one it works ok, then if i exit it and run the other it works ok. but i cant make them both run one suspended and the other is opened

What version of Corona SDK are you using?  Are you building for Android or iOS? 

What does your build.settings file look like?

im using corona sdk version 2013.1076 (2013.4.3)

and i use glider my code contains storyboard scenes

i build for iOS 

and this is my built.settings file 

settings =

{

    orientation =

    {

        default = “portrait”,

        supported = { “portrait” }

    },

    android =

    {

        usesPermissions =

        {

            “android.permission.INTERNET”,

        },

    },

    iphone =

    {

        plist =

        {

                    FacebookAppID = “135244813295783”,

            CFBundleIconFile = “Icon.png”,

            CFBundleIconFiles =

            {

                “Icon.png”, 

                “Icon@2x.png”, 

                “Icon-72.png”, 

                “Icon-72@2x.png”, 

            },

            UIApplicationExitsOnSuspend = false,    – must be false for single sign-on to work

            CFBundleURLTypes =

            {

                {

                    CFBundleURLSchemes =

                    {

                        “fb135244813295783”,    – replace XXXXXXXXX with your facebook appId

                    }

                }

            }

        }

    }

}

What version of Corona SDK are you using?  Are you building for Android or iOS? 

What does your build.settings file look like?

im using corona sdk version 2013.1076 (2013.4.3)

and i use glider my code contains storyboard scenes

i build for iOS 

and this is my built.settings file 

settings =

{

    orientation =

    {

        default = “portrait”,

        supported = { “portrait” }

    },

    android =

    {

        usesPermissions =

        {

            “android.permission.INTERNET”,

        },

    },

    iphone =

    {

        plist =

        {

                    FacebookAppID = “135244813295783”,

            CFBundleIconFile = “Icon.png”,

            CFBundleIconFiles =

            {

                “Icon.png”, 

                “Icon@2x.png”, 

                “Icon-72.png”, 

                “Icon-72@2x.png”, 

            },

            UIApplicationExitsOnSuspend = false,    – must be false for single sign-on to work

            CFBundleURLTypes =

            {

                {

                    CFBundleURLSchemes =

                    {

                        “fb135244813295783”,    – replace XXXXXXXXX with your facebook appId

                    }

                }

            }

        }

    }

}