Error when requesting camera permissions in API Level >=23 (Android +6.0)

We’re hoping someone here can help shed some light on resolving this issue. We’re running the latest build (3079) although this has been an apparent issue since build 3007. 

The permissions for the camera will properly show, but once permissions are accepted on the device - the app crashes and the log shows the information below. 

Here’s our error log:

May 09 11:53:02.069 C3: ERROR: CoronaActivity.DefaultRequestPermissiosnResultHandler.forwardRequestPermissionsResultToLua():Cannot forward results to

May 09 11:53:02.071  Lua as no registry ID was found!

                    C3: Execute the lua listener task

                    C3: ERROR: CoronaActivity.DefaultRequestPermissiosnResultHandler.forwardRequestPermissionsResultToLua():Cannot forward results to Lua as no registry ID was found!

                    C3: Application resumed from suspension

Ma

As you can see above, there seems to be an error in propagating the permissions to Lua.

Here’s our build.settings:
 

settings =

{

splashScreen = {

enable = true,

image = “URALogo.jpg”

},

orientation =

{

default = “portrait”,

supported = { “portrait” }

},

android =

{

coronaWindowMovesWhenKeyboardAppears = true,

usesPermissions =

       {

           “android.permission.WRITE_EXTERNAL_STORAGE”,

                “android.permission.INTERNET”,

                “android.permission.ACCESS_FINE_LOCATION”,

                “android.permission.ACCESS_COARSE_LOCATION”,

                “android.permission.CAMERA”,

       },

   usesFeatures =

        {

            { name=“android.hardware.camera”, required=true },

            { name=“android.hardware.location”, required=false },

            { name=“android.hardware.location.gps”, required=false },

        },

}

}

We can’t seem to find any occurrence of this error anywhere so whatever guidance/insight you can provide i’m sure will be SUPER helpful. 

Thank you!