"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Activities in v1.0.6

Hi, It looks like single QCARUnityPlayer.PlayerActivity (from v1.0.0) has been replaced by three activities (in v1.0.6): * com.qualcomm.QCARUnityPlayer.QCARPlayerProxyActivity * com.qualcomm.QCARUnityPlayer.QCARPlayerActivity * com.qualcomm.QCARUnityPlayer.QCARPlayerNativeActivity Previously when I wanted to extend QCAR activity all I had to do was: 1) Extend QCARUnityPlayer.PlayerActivity in my class 2) Replace QCARUnityPlayer.PlayerActivity in AndroidManifest.xml Now with 3 activities in place it's a bit unclear what should be done. I did the old procedure to QCARPlayerProxyActivity, but it doesn't work as expected - I don't get onResume calls anymore. Could you explain how new activities are organized? (my knowledge of activities is not perfect...) And how to extend QCAR activity? Thanks, Paulius

Start by taking a look at the code Unity provides. There is a sample implementation of UnityPlayerProxyActivity located in Unity's PlaybackEngines/AndroidPlayer/src/com/unity3d/player folder.