Hello. i am using unity 2019.3.0f3, Windows 10, EasyAR3.0. I stumbled across an issue today as described in the question. Users can only see black screen when they want to use the camera. The 2 phones are listed in the https://developers.google.com/ar/discover/supported-devices
In ARSession script i changed instead of Init() called in Awake(), its is called on button click and i made the Init public. In Init(), i changed
if(UseSecondCamera)
{
openResult = easyarCamera.openWithIndex(2);
//openResult = easyarCamera.openWithIndex(1);
}
else
{
openResult = easyarCamera.openWithType(CameraDeviceType.Front);
//openResult = easyarCamera.openWithType(CameraDeviceType.Default);
}
Please advise.