Skip to content
This repository has been archived by the owner on Nov 8, 2019. It is now read-only.
This repository has been archived by the owner on Nov 8, 2019. It is now read-only.

ios support in Unity 5.6.0f1 and GVR 1.30 #504

Closed
mjsibbald opened this issue Mar 22, 2017 · 23 comments
Closed

ios support in Unity 5.6.0f1 and GVR 1.30 #504

mjsibbald opened this issue Mar 22, 2017 · 23 comments

Comments

@mjsibbald
Copy link

Is there anyway to fix the duplicate symbol problem we have when turning VR support on? This is blocking a major project right now. Going back to Unity 5.4 or 5.5 is no option. Turning the VR support off and using the GVR SDK directly won't work either. Cause ther library checks is #if !UNITY_HAS_GOOGLEVR.

Does anybody have another solution for this? I've seen some stuff about replacing the pods in the generated iOS project with an ealier GVR SDK. But 1.30 has some fixes/features we need.

Update soon for this?

@dill0wn
Copy link

dill0wn commented Mar 24, 2017

bump!

I'm getting the same problem with 5.6.0f1.

An example of my linker error:

...
duplicate symbol _OBJC_IVAR_$_GTMSessionUploadFetcher._delegateCompletionHandler in:
  /path/to/xcode/project/Pods/GVRSDK/NDK/Libraries/libGVRNDK_arm.a(GTMSessionUploadFetcher_58e8d1383eec8dda9cc9d9fddbb79d36.o)
  /path/to/xcode/project/Libraries/Plugins/iOS/libgvrunity.a(GTMSessionUploadFetcher_d08b9eb98b259f6449b7f5ba7f534b75.o)
...
ld: 1318 duplicate symbols for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

I am not using 'Cardboard' in the iOS player settings (EDIT: It must have actually been enabled, I Just hadn't "saved project" or something). I am just importing gvr 1.30.0 into my project.

@dill0wn
Copy link

dill0wn commented Mar 24, 2017

Whoops! My bad. The duplicate symbols issue only shows up if you have Cardboard VR enabled in Unity's iOS Player Settings. If you solely use the imported the SDK, then those issue go away. I did not have the box checked at the time, but I had previously checked it. It must have been typical Unity serialization/project saving stuff where it though VR support was still enabled.

That being said!

My project now builds and runs but there is not a stereo view and there is not gyro-controlled look.

TL;DR even after getting past the linker errors, it's still Broke as a Joke™.

@guneyozsan
Copy link

guneyozsan commented Mar 28, 2017

I had the same problem and following the suggestion by Unity and turning off the VR support to use the GVR SDK directly didn't run in VR mode either.

With Unity 5.6.0f2 update I could make it work by following these steps:

  • Enable VR Support for iOS in Unity and add Cardboard.
  • Search for UNITY_HAS_GOOGLEVR in the project scripts and modify the code to include IOS with Android as well.
    Mostly this is putting
    || UNITY_IOS
    near
    UNITY_ANDROID
    A few places require some more detailed tweaks but you can figure it out reading the code.
    You should do this for all Google VR SDK scripts except the ones related with Daydream Controller. What I did was to put it everywhere and clean them back following the console errors after you hit Build in Unity. Also I commented out a few of the lines with errors instead of rolling back UNITY_IOS as some part of the code was still needed in iOS.
  • Build in Unity.
  • Remove the line containing:
    /* libPods-Unity-iPhone.a in Frameworks */,
    from the project.pbxproj file under Unity-iPhone.xcodeproj in the Xcode project, because it was complaining "file not found".
  • In iOS Project Builder for Windows, add the path "-IPods\GVRSDK\Sources" for the missing file "GVROverlayView.h" as a compiler flag.
  • Compile using iOS Project Builder for Windows.

@miraleung
Copy link
Contributor

Thanks @guneyozsan, this will be fixed in our upcoming release.

@mjsibbald
Copy link
Author

Thanks @guneyozsan, if you could share you modified SDK please. We working with a tight deadline. Of @miraleung when is the next update planned?

@mjsibbald
Copy link
Author

How did you get rid of this?
duplicate symbol OBJC_CLASS$_DeviceParamsSyncHelper in:
/Users/test/Documents/test/Unity/iOSFix/Builds/test_ios2/Pods/GVRSDK/Libraries/libGVRSDK.a(DeviceParamsSyncHelper.mm.o)
/Users/test/Documents/test/Unity/iOSFix/Builds/test_ios2/Libraries/Plugins/iOS/libgvrunity.a(DeviceParamsSyncHelper.mm.o)
duplicate symbol OBJC_METACLASS$_DeviceParamsSyncHelper in:
/Users/test/Documents/test/Unity/iOSFix/Builds/test_ios2/Pods/GVRSDK/Libraries/libGVRSDK.a(DeviceParamsSyncHelper.mm.o)
/Users/test/Documents/test/Unity/iOSFix/Builds/test_ios2/Libraries/Plugins/iOS/libgvrunity.a(DeviceParamsSyncHelper.mm.o)

@guneyozsan
Copy link

guneyozsan commented Mar 29, 2017

For reference, this is my current GoogleVR folder:
GoogleVR.zip

@mjsibbald
I am compiling using iOS Project Builder on Windows and it has different errors (and solutions) for the same problem. In Xcode removing ObjC from the list here had resolved this duplicate errors in a prior similar issue:
screen shot 2017-03-06 at 21 26 22

Also did you try deleting libgvrunity.a and libGVRSDK.a, or removing references to them? What I understand from the overall discussions here is at least libgvrunity.a shouldn't be required in native VR support (no idea about ibGVRSDK.a) and worth trying deleting the files and maybe the possible references of the latter errors it may cause.

In general, I suggest moving one step at a time and compile each time.

@miraleung
Copy link
Contributor

This will be fixed in the upcoming release. When that comes out, you will be able to build on Unity 5.6.0b10+ with Cardboard enabled for iOS. Please upgrade when v1.40 is out, because we may be removing support for non-GVR integration Unity versions soon.

@alimoeeny
Copy link

alimoeeny commented Apr 4, 2017

So this also applies to cocospods problem as well? I mean if I add cardboard in player settings, I cannot use pod update or pod install I get

CocoaPods did not set the base configuration of your project because your project already has a custom config set.

So with v1.40 all will be well.

@jrobalino
Copy link

jrobalino commented Apr 8, 2017

Here's another workaround that served me well and seems slightly easier to execute. Note, however, that it bypasses the pods, so it won't do if you absolutely need them.

  1. Copy the GVROverlayView.h file from Pods/Headers/Public/GVRSDK folder to the top-level Classes folder.
  2. Open the main .xcodeproj file.
  3. Delete the libPods-Unity-iPhone.a file from the left pane.
  4. Under Build Settings, double-click the first line in Other Linker Flags.
  5. Delete the $(inherited) line.

screen shot 2017-04-07 at 8 44 47 pm

  1. Build the project.
  2. Profit.

@joejo-unity
Copy link

For anyone hitting this in the future:

Cardboard for iOS

Google distributes the Cardboard NDK through the Cocoapods library management system (http://cocoapods.org). Unity ships with an integration of a specific version of the Google NDK from the Cocoapods manager and will create your XCode project using that version of the Google NDK. The way the library is integrated through Cocoapods changes the way we generate the resulting project. Cocoapods creates a wrapping XCode workspace that contains the Unity project as well as a project for the Google NDK library and its dependencies. You have to make sure that you open and/or use the workspace and not just the project or else you will get linker errors due to the missing libraries from Cocoapods.

@ranjanappa
Copy link

Hi All,
I'm Stuck with this issue. please help
Using GVR SDK on via Cocoa pods on iOS, Xcode 8.3.2 + Unity 5.6.1f1

Undefined symbols for architecture arm64:
"_markerTrackerCreateMarker", referenced from:
_VuforiaNativeIosWrapper_MarkerTrackerCreateMarker_m757166241 in Bulk_Vuforia.UnityExtensions_1.o
_VuforiaNativeIosWrapper_markerTrackerCreateMarker_m2775934785 in Bulk_Vuforia.UnityExtensions_1.o
(maybe you meant: _VuforiaNativeWrapper_markerTrackerCreateMarker_m3271239606, _VuforiaNativeIosWrapper_markerTrackerCreateMarker_m2775934785 )
"_markerSetSize", referenced from:
_VuforiaNativeIosWrapper_MarkerSetSize_m1708917548 in Bulk_Vuforia.UnityExtensions_1.o
_VuforiaNativeIosWrapper_markerSetSize_m2229037900 in Bulk_Vuforia.UnityExtensions_1.o
(maybe you meant: _VuforiaNativeWrapper_markerSetSize_m3119755303, _VuforiaNativeIosWrapper_markerSetSize_m2229037900 )
"_saveToGallery", referenced from:
_ScreenshotHandler_saveToGallery_m3882863219 in Bulk_Assembly-CSharp_3.o
_U3CSaveU3Ec__Iterator0_MoveNext_m3238644082 in Bulk_Assembly-CSharp_3.o
_U3CSaveExistingU3Ec__Iterator1_MoveNext_m2472351086 in Bulk_Assembly-CSharp_3.o
_ScreenshotSaveManager_saveToGallery_m3428932133 in Bulk_Assembly-CSharp_3.o
_U3CSaveU3Ec__Iterator0_MoveNext_m1329452254 in Bulk_Assembly-CSharp_3.o
_U3CSaveExistingU3Ec__Iterator1_MoveNext_m1846944678 in Bulk_Assembly-CSharp_3.o
(maybe you meant: _ScreenshotSaveManager_saveToGallery_m3428932133, _ScreenshotHandler_saveToGallery_m3882863219 )
"_setVRBackButtonEnabled", referenced from:
_iOSDevice_SetVRBackButtonEnabled_m808901619 in Bulk_Assembly-CSharp_1.o
_iOSDevice_setVRBackButtonEnabled_m1163756499 in Bulk_Assembly-CSharp_1.o

@joejo-unity
Copy link

joejo-unity commented Jun 12, 2017 via email

@ranjanappa
Copy link

Yes, i'm opening the workspace which unity created.
i tried reimporting vuforia , google vr packages into unity and build again.
same problem, not able to get rid of these.

@joejo-unity
Copy link

joejo-unity commented Jun 12, 2017 via email

@joejo-unity
Copy link

joejo-unity commented Jun 12, 2017 via email

@ranjanappa
Copy link

pods updated to the latest.
Using GVR sdk 1.6.0
Unity 5.6.1f1

i downloaded from vuforia website and google website for thier respective packages.

@ranjanappa
Copy link

Don't know if this will help , here is the complete snap shot of linking errors from Xcode

Showing Recent Issues
"_markerTrackerCreateMarker", referenced from:

  _VuforiaNativeIosWrapper_MarkerTrackerCreateMarker_m757166241 in Bulk_Vuforia.UnityExtensions_1.o


  _VuforiaNativeIosWrapper_markerTrackerCreateMarker_m2775934785 in Bulk_Vuforia.UnityExtensions_1.o


 (maybe you meant: _VuforiaNativeWrapper_markerTrackerCreateMarker_m3271239606, _VuforiaNativeIosWrapper_markerTrackerCreateMarker_m2775934785 )

"_markerSetSize", referenced from:

  _VuforiaNativeIosWrapper_MarkerSetSize_m1708917548 in Bulk_Vuforia.UnityExtensions_1.o


  _VuforiaNativeIosWrapper_markerSetSize_m2229037900 in Bulk_Vuforia.UnityExtensions_1.o


 (maybe you meant: _VuforiaNativeWrapper_markerSetSize_m3119755303, _VuforiaNativeIosWrapper_markerSetSize_m2229037900 )

"_saveToGallery", referenced from:

  _ScreenshotHandler_saveToGallery_m3882863219 in Bulk_Assembly-CSharp_3.o


  _U3CSaveU3Ec__Iterator0_MoveNext_m3238644082 in Bulk_Assembly-CSharp_3.o


  _U3CSaveExistingU3Ec__Iterator1_MoveNext_m2472351086 in Bulk_Assembly-CSharp_3.o


  _ScreenshotSaveManager_saveToGallery_m3428932133 in Bulk_Assembly-CSharp_3.o


  _U3CSaveU3Ec__Iterator0_MoveNext_m1329452254 in Bulk_Assembly-CSharp_3.o


  _U3CSaveExistingU3Ec__Iterator1_MoveNext_m1846944678 in Bulk_Assembly-CSharp_3.o


 (maybe you meant: _ScreenshotSaveManager_saveToGallery_m3428932133, _ScreenshotHandler_saveToGallery_m3882863219 )

"_setVRBackButtonEnabled", referenced from:

  _iOSDevice_SetVRBackButtonEnabled_m808901619 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_setVRBackButtonEnabled_m1163756499 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_setVRBackButtonEnabled_m1163756499)

"_setAlignmentMarkerEnabled", referenced from:

  _iOSDevice_SetAlignmentMarkerEnabled_m2451579479 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_setAlignmentMarkerEnabled_m887238007 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_setAlignmentMarkerEnabled_m887238007)

"_setSettingsButtonEnabled", referenced from:

  _iOSDevice_SetSettingsButtonEnabled_m3766150109 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_setSettingsButtonEnabled_m3090933181 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_setSettingsButtonEnabled_m3090933181)

"_ResetHeadTracker", referenced from:

  _GvrDevice_Recenter_m639035202 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_ResetHeadTracker_m1017572857 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_ResetHeadTracker_m1017572857)

"_setVRModeEnabled", referenced from:

  _iOSDevice_SetVRModeEnabled_m1884484617 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_setVRModeEnabled_m2142284841 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_setVRModeEnabled_m2142284841)

"_GetEventFlags", referenced from:

  _GvrDevice_ProcessEvents_m3292119668 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_GetEventFlags_m228521139 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_GetEventFlags_m228521139)

"_SetDefaultProfile", referenced from:

  _GvrDevice_SetDefaultDeviceProfile_m2688999 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_SetDefaultProfile_m726090350 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_SetDefaultProfile_m726090350)

"_Start", referenced from:

  _GvrDevice_Init_m3049041732 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_Start_m2863725800 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: __Z23Microphone_CUSTOM_StartP12Il2CppStringhii, __Z35MonoBehaviour_CUSTOM_StartCoroutineP12Il2CppObjectP12Il2CppStringS0_ , __Z42Register_UnityEngine_LocationService_Startv , __Z52Register_UnityEngine_Handheld_StartActivityIndicatorv , _QRCodeDecodeController_Start_m1103053001_MetadataUsageId , _Process_set_StartInfo_m364158131_MetadataUsageId , _ReconstructionImpl_Start_m2283817134 , _LeaseManager_StartManager_m281998993_MetadataUsageId , _DatabaseLoadAbstractBehaviour_Start_m2120855892_MetadataUsageId , _MonoBehaviour_StartCoroutine_m296997955 , __Z44Register_UnityEngine_Animator_StartRecordingv , __Z29Animator_CUSTOM_StartPlaybackP12Il2CppObject , __Z61Register_UnityEngine_Apple_ReplayKit_ReplayKit_StartRecordingv , _GvrReticle_Start_m478287654 , _GoToWithOutAr_Start_m1516197627 , _TweenRunner_1_StartTween_m3792842064_gshared , _MixedRealityController_StartDeviceTracker_m2659636892_MetadataUsageId , __Z49Register_UnityEngine_MonoBehaviour_StartCoroutinev , __Z28LocationService_CUSTOM_StartP12Il2CppObjectff , __Z63Register_UnityEngine_MonoBehaviour_StartCoroutine_Auto_Internalv , _DemoInputManager_Start_m50976037_MetadataUsageId , __ZN29wireless_android_play_playlog54VREvent_EarthVr_Preferences_StartConfiguration_IsValidEi , __Z43Register_UnityEngine_Animator_StartPlaybackv , _ChildMenu_Btn_Start_m1614851337 , _TextRecoAbstractBehaviour_Start_m1959725793 , _QRCodeEncodeController_Start_m1279414171 , _RepeatContext_set_Start_m365632994 , _QRCodeDecodeController_Start_m1103053001 , _AnimController_Start_m2597550432 , _LoadingScreenManager_StartOperation_m697316212 , _DatabaseLoadAbstractBehaviour_Start_m2120855892 , _RevealNightEarthTexture_Start_m3141427175 , _CPEMouseLook_Start_m3660279203 , _Process_Start_shell_m2697181147 , _QRDecodeTest_Start_m1399161544 , _ImageTargetBuilderImpl_StartScan_m3041873830 , _Process_StartExitCallbackIfNeeded_m699433821 , _DefaultSmartTerrainEventHandler_Start_m2088335438 , _PlayModeUnityPlayer_Start_m579315988 , _DistortionRenderingBehaviour_Start_m3582865692 , _DefaultSmartTerrainEventHandler_Start_m2088335438_MetadataUsageId , _LegacyHideExcessAreaClipping_Start_m495781433 , _intoScript_Start_m1823246944 , _Thread_Start_m1419497481 , _TrackableBehaviour_Start_m1196639306 , _UserDefinedTargetBuildingAbstractBehaviour_Start_m3860857606 , _AutoPlayVideo_Start_m2224703592_MetadataUsageId , _AsteroidCrackedBit_Start_m4051714086 , _VuforiaNativeWrapper_StartExtendedTracking_m1582118465 , _Thread_Start_m1419497481_MetadataUsageId , _GvrReticlePointer_Start_m2978962707 , _String_StartsWith_m46695182_MetadataUsageId , _String_StartsWith_m1841920685_MetadataUsageId , _BackgroundPlaneAbstractBehaviour_Start_m142659071 , _SceneLoaderOnStart_Start_m772723837_MetadataUsageId , _ServerIdentity_StartTrackingLifetime_m2979905325_MetadataUsageId , _VuforiaNullWrapper_StartExtendedTracking_m2133871827 , _CrossAppDomainChannel_StartListening_m3076788403 , _GvrAudioSource_Start_m1537117911 , _LoadingScreenManager_Start_m775889466 , _DeviceTrackerAbstractBehaviour_StartDeviceTracker_m4265475823 , _NoiseAndScratches_Start_m2443812740 , __Z31ReplayKit_CUSTOM_StartRecordinghh , _PlanetInfo_Start_m2029174223_MetadataUsageId , _GvrKeyboard_Start_m3766883597_MetadataUsageId , _SaveUtility_Start_m3419381778 , _Asteroid_Start_m3299982412 , _LeaseManager_StartManager_m281998993 , _VRIntegrationHelper_Start_m536586683 , _CloudRecoImageTargetImpl_StartExtendedTracking_m4026259656_MetadataUsageId , _DigitalEyewearAbstractBehaviour_Start_m2279789257_MetadataUsageId , _TweenRunner_1_StartTween_m577248035_MetadataUsageId , _RepeatContext_get_Start_m1989972711 , _Selectable_StartColorTween_m407357486_MetadataUsageId , _CloudRecoAbstractBehaviour_StartCloudReco_m1148484471 , _WebCamImpl_StartCamera_m2311244138 , _TextRecoAbstractBehaviour_StartTextTracker_m1237111316_MetadataUsageId , _NewBehaviourScript_Start_m86287500 , _VuforiaAbstractBehaviour_StartVuforia_m249127559_MetadataUsageId , _VuforiaAbstractBehaviour_Start_m2160275031_MetadataUsageId , _VideoBackgroundManagerAbstractBehaviour_Start_m2776212651_MetadataUsageId , _MouseBullets_Start_m2217016963 , _UserDefinedTargetBuildingAbstractBehaviour_Start_m3860857606_MetadataUsageId , _UserDefinedTargetBuildingAbstractBehaviour_StartScanning_m2698452449 , _TrackableBehaviour_Start_m1196639306_MetadataUsageId , _TextTrackerImpl_Start_m3238301911_MetadataUsageId , _TextTrackerImpl_Start_m3238301911 , _TextRecoAbstractBehaviour_StartTextTracker_m1237111316 , _TextRecoAbstractBehaviour_Start_m1959725793_MetadataUsageId , _TargetFinderImpl_StartRecognition_m4133014850 , _StencilHideExcessAreaClipping_Start_m2440281030_MetadataUsageId , _StencilHideExcessAreaClipping_Start_m2440281030 , __Z64Register_UnityEngine_Apple_ReplayKit_ReplayKit_StartBroadcastingv , _SmartTerrainTrackerImpl_Start_m1354385746_MetadataUsageId , _SmartTerrainTrackerAbstractBehaviour_StartSmartTerrainTracker_m3956375703_MetadataUsageId , _RotationalPlayModeDeviceTrackerImpl_Start_m173489900_MetadataUsageId , _RotationalDeviceTrackerImpl_Start_m915491143_MetadataUsageId , _RotationalDeviceTrackerImpl_Start_m915491143 , _ReconstructionImpl_Start_m2283817134_MetadataUsageId , _NullHideExcessAreaClipping_Start_m950157531 , _ReconstructionAbstractBehaviour_Start_m1054085949 , _PropAbstractBehaviour_Start_m2122559776_MetadataUsageId , _SmartTerrainTrackableBehaviour_Start_m1082390008 , _PlayModeUnityPlayer_Start_m579315988_MetadataUsageId , _ObjectTrackerImpl_Start_m3737479319_MetadataUsageId , _ObjectTargetImpl_StartExtendedTracking_m913842560_MetadataUsageId , _MixedRealityController_StartCameraAndTrackersIfStopped_m2661183636_MetadataUsageId , _MarkerTrackerImpl_Start_m1384918226_MetadataUsageId , _MarkerTrackerImpl_Start_m1384918226 , _SceneLoaderOnStart_Start_m772723837 , _LegacyHideExcessAreaClipping_Start_m495781433_MetadataUsageId , _HideExcessAreaAbstractBehaviour_Start_m3931324947 , _ObjectTargetImpl_StartExtendedTracking_m913842560 , _CloudRecoImageTargetImpl_StartExtendedTracking_m4026259656 , _CloudRecoAbstractBehaviour_Start_m3565773725_MetadataUsageId , _CloudRecoAbstractBehaviour_StartCloudReco_m1148484471_MetadataUsageId , _CameraDeviceImpl_StartCameraDevice_m1679253860_MetadataUsageId , _CameraDeviceImpl_StartCameraDevice_m1679253860 , _CameraDeviceImpl_Start_m2745191011 , _BackgroundPlaneAbstractBehaviour_Start_m142659071_MetadataUsageId , _Process_Start_noshell_m3985802398 , _Drawer_Start_m4079018740 , _VuforiaNativeIosWrapper_StartExtendedTracking_m3153159432 , _MonoBehaviour_StartCoroutine_Auto_m1744905232 , _ColorCorrectionCurves_Start_m126764864 , _GlowDeprecated_Start_m2848242001_MetadataUsageId , _GvrEye_Start_m1930934301_MetadataUsageId , _QREncodeTest_Start_m4186259600_MetadataUsageId , _CameraPath_Start_m2527841427 , _Process_Start_common_m1560272704 , __Z38Handheld_CUSTOM_StartActivityIndicatorv , _SmartTerrainTrackerAbstractBehaviour_StartSmartTerrainTracker_m3956375703 , _PropAbstractBehaviour_Start_m2122559776 , _GVRDemoManager_Start_m1801573700 , _GoToWithOutAr_Start_m1516197627_MetadataUsageId , _StartFrameRenderingMTL , _String_StartsWith_m46695182 , _TweenRunner_1_StartTween_m577248035_MethodInfo_var , _TweenRunner_1_StartTween_m3792842064_MethodInfo_var , _ReconstructionFromTargetImpl_Start_m1274563583 , _ObjectTrackerImpl_Start_m3737479319 , __Z30Animator_CUSTOM_StartRecordingP12Il2CppObjecti , _UIManager_Start_m1848595224 , _Codeword_get_StartX_m901706850 , _DemoSceneScript_Start_m4019558065 , _CloudRecoAbstractBehaviour_Start_m3565773725 , _ReconstructionAbstractBehaviour_Start_m1054085949_MetadataUsageId , _Context_StartSwitchingSecurityParameters_m373522596 , _Selectable_StartColorTween_m407357486 , _QRDecodeTest_Start_m1399161544_MetadataUsageId , _String_StartsWith_m1841920685 , _GvrKeyboard_Start_m3766883597 , _ImageTargetBuilderImpl_StartScan_m3041873830_MetadataUsageId , _CameraMotionBlur_Start_m4034997953 , _DigitalEyewearAbstractBehaviour_Start_m2279789257 , _CameraPlaneController_Start_m3313369562 , _ScrubberEvents_Start_m3106664808 , _SpaceShuttle_Start_m2341561219 , _Process_Start_m2737551206_MetadataUsageId , _Process_Start_common_m1560272704_MetadataUsageId , _Process_Start_noshell_m3985802398_MetadataUsageId , _Process_Start_shell_m2697181147_MetadataUsageId , _VideoBackgroundAbstractBehaviour_Start_m3641120856 , _RotationalPlayModeDeviceTrackerImpl_Start_m173489900 , _FinderPattern_get_StartEnd_m84842147 , _VuforiaAbstractBehaviour_StartVuforia_m249127559 , _Process_Start_m2737551206 , _CameraFocusController_Start_m128685776 , _IOSUnityPlayer_Start_m2082355513_MetadataUsageId , _MonoBehaviour_StartCoroutine_m1399371129 , _GvrReticle_Start_m478287654_MetadataUsageId , _Teleport_Start_m3577123338 , _GvrReticlePointer_Start_m2978962707_MetadataUsageId , _ExplosionTest_Start_m3270224022_MetadataUsageId , _SmartTerrainTrackableBehaviour_Start_m1082390008_MetadataUsageId , _ShareImageCanvas_Start_m3972157977 , _TweenRunner_1_StartTween_m3792842064_MetadataUsageId , _UIManager_Start_m1848595224_MetadataUsageId , _Rotate_Start_m736534674 , _WireframeBehaviour_Start_m2184757344 , _Blur_Start_m2288038758 , _VideoBackgroundManagerAbstractBehaviour_Start_m2776212651 , _EdgeDetection_Start_m2281010411 , _GVRDemoManager_Start_m1801573700_MetadataUsageId , _WireframeTrackableEventHandler_Start_m1475947192 , _FinderPattern_set_StartEnd_m1740369774 , _PlanetInfo_Start_m2029174223 , _DustCloud_Start_m2820036816_MetadataUsageId , _QREncodeTest_Start_m4186259600 , _PlanetSwitch_StartAnimAfterSomeTime_m4042162471_MetadataUsageId , _LoadingScreenManager_Start_m775889466_MetadataUsageId , _ShowInfo_Start_m1149312980 , _LicenseActivationScript_Start_m1095099011_MetadataUsageId , _TargetTracking_Start_m4086282377_MetadataUsageId , _WSAUnityPlayer_Start_m3611544449 , _CameraFocusController_StartAfterVuforia_m900712220_MethodInfo_var , _IOSUnityPlayer_Start_m2082355513 , _DeviceTrackerAbstractBehaviour_StartDeviceTracker_m4265475823_MetadataUsageId , _Asteroid_Start_m3299982412_MetadataUsageId , _VuMarkTargetImpl_StartExtendedTracking_m1406240925 , _EmulatorManager_Start_m411591913 , _ImageEffectBase_Start_m1844470210_MetadataUsageId , _ExitCtrl_Start_m3409687800 , _RotationAroundPlanet_Start_m3227630260 , _ExitCtrl_Start_m3409687800_MetadataUsageId , _NoiseAndScratches_Start_m2443812740_MetadataUsageId , _PlanetSwitch_StartAnimAfterSomeTime_m4042162471 , _AndroidUnityPlayer_Start_m1796253047 , _TweenRunner_1_StartTween_m577248035_gshared , _HideExcessAreaAbstractBehaviour_Start_m3931324947_MetadataUsageId , _mGvrReticle_Start_m4052980701 , _Codeword_set_StartX_m2773495145 , _GvrFPS_Start_m1271000117 , _GvrEye_Start_m1930934301 , _VideoControlsManager_Start_m4093526529_MetadataUsageId , _ShareImageCanvas_Start_m3972157977_MetadataUsageId , _ReconstructionImpl_StartNavMeshUpdates_m4284814640 , _DistortionRenderingBehaviour_Start_m3582865692_MetadataUsageId , _CameraPath_Start_m2527841427_MetadataUsageId , _CameraPathAnimator_Start_m1564799136_MetadataUsageId , _Toggle_Start_m551422251 , _MotionBlur_Start_m2782010816 , _MonoBehaviour_StartCoroutine_Auto_Internal_m1014513456 , _DemoSceneManager_Start_m25303337 , _MarkerImpl_StartExtendedTracking_m1891706488_MetadataUsageId , _CPEMouseLook_Start_m3660279203_MetadataUsageId , _WireframeTrackableEventHandler_Start_m1475947192_MetadataUsageId , _SmartTerrainTrackerImpl_Start_m1354385746 , _VRIntegrationHelper_Start_m536586683_MetadataUsageId , _MaskOutBehaviour_Start_m3914251470_MetadataUsageId , _ShapeShttleAnim_Start_m648180243_MetadataUsageId , _RotateAround_Start_m4102343553_MetadataUsageId , _GvrVideoPlayerTexture_Start_m3362726395_MetadataUsageId , _VuforiaAbstractBehaviour_Start_m2160275031 , _DaylightTime_get_Start_m4045419007 , _TargetFinderImpl_StartRecognition_m4133014850_MetadataUsageId , _TargetTrackingDemo_Start_m3279651454_MetadataUsageId , _DecodeByStaticPic_Start_m152421550 , _GvrAudioSoundfield_Start_m988594587 , _CameraMotionBlur_Start_m4034997953_MetadataUsageId , _ToggleAction_Start_m1766399539 , _CamManager_Start_m569616319_MetadataUsageId , _UIBehaviour_Start_m164367516 , _ScreenSpaceAmbientOcclusion_Start_m3598344640_MetadataUsageId , _LicenseActivationScript_Start_m1095099011 , _TargetFinderImpl_StartInit_m81465743 , _ContrastStretch_Start_m389283952 , _RotateY_Start_m352574346 , _MaskOutBehaviour_Start_m3914251470 , _ExplosionTest_Start_m3270224022 , _ImageEffectBase_Start_m1844470210 , _GvrPreRender_Start_m905170573 , _PostEffectsBase_Start_m1758985662 , _CameraDeviceImpl_Start_m2745191011_MetadataUsageId , _CameraFocusController_Start_m128685776_MetadataUsageId , _TargetTrackingDemo_Start_m3279651454 , _StereoRenderEffect_Start_m525279968_MetadataUsageId , _StereoRenderEffect_Start_m525279968 , _ShapeShuttleAnimation_Start_m3201563275 , _ShapeShttleAnim_Start_m648180243 , _VuforiaManagerImpl_StartRendering_m1927564155 , _ScreenshotSaveManager_Start_m1694525037_MetadataUsageId , _ScreenshotSaveManager_Start_m1694525037 , _GvrVideoPlayerTexture_Start_m3362726395 , _SaveUtility_Start_m3419381778_MetadataUsageId , _RotationAroundPlanet_Start_m3227630260_MetadataUsageId , _RotateAround_Start_m4102343553 , _TweenRunner_1_Start_m1160751894_gshared , __Z37Register_UnityEngine_Microphone_Startv , __Z49MonoBehaviour_CUSTOM_StartCoroutine_Auto_InternalP12Il2CppObjectS0_ , _Thread_Start_m2652746659 , _MixedRealityController_StartCameraAndTrackersIfStopped_m2661183636 , _DefaultTrackableEventHandler_Start_m93544099_MetadataUsageId , _TargetFinderImpl_StartInit_m81465743_MetadataUsageId , _RevealNightEarthTexture_Start_m3141427175_MetadataUsageId , _ScrubberEvents_Start_m3106664808_MetadataUsageId , _SpaceShuttle_Start_m2341561219_MetadataUsageId , _Logger_Start_m2250296027 , _ScreenSpaceAmbientOcclusion_Start_m3598344640 , _EmulatorManager_Start_m411591913_MetadataUsageId , _VideoControlsManager_Start_m4093526529 , _AutoPlayVideo_Start_m2224703592 , _CameraFocusController_StartAfterVuforia_m900712220 , _DemoInputManager_Start_m50976037 , _NullUnityPlayer_Start_m805846788 , _VuforiaManagerImpl_StartRendering_m1927564155_MetadataUsageId , _ShapeShuttleAnimation_Start_m3201563275_MetadataUsageId , _GvrFPS_Start_m1271000117_MetadataUsageId , _MixedRealityController_StartDeviceTracker_m2659636892 , _DefaultTrackableEventHandler_Start_m93544099 , _CameraPathAnimator_Start_m1564799136 , _mGvrReticle_Start_m4052980701_MetadataUsageId , _MonoBehaviour_StartCoroutine_m2470621050 , _Blur_Start_m2288038758_MetadataUsageId , _ObjectRotation_Start_m329535376 , _CameraMotionBlur_StartFrame_m3421308976 , _Process_set_StartInfo_m364158131 , _TargetTracking_Start_m4086282377 , __Z34ReplayKit_CUSTOM_StartBroadcastingP12Il2CppObjecthh , _StartFrameRenderingGLES , _GlowDeprecated_Start_m2848242001 , _MarkerImpl_StartExtendedTracking_m1891706488 , _DustCloud_Start_m2820036816 , _CameraPlaneController_Start_m3313369562_MetadataUsageId , _DemoSceneManager_Start_m25303337_MetadataUsageId , _ServerIdentity_StartTrackingLifetime_m2979905325 , _CamManager_Start_m569616319 , _QRCodeEncodeController_Start_m1279414171_MetadataUsageId , _TweenRunner_1_Start_m791129861_gshared , _GvrViewer_Start_m1236293242 , _AutoFocus_Start_m2051978308_MetadataUsageId , _AutoFocus_Start_m2051978308 , _GvrDevice_Start_m2863725800 , _intoScript_Start_m1823246944_MetadataUsageId , _WireframeBehaviour_Start_m2184757344_MetadataUsageId )

"_Pause", referenced from:

  _GvrDevice_OnPause_m418769636 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_Pause_m3130736102 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: __Z38AudioSource_CUSTOM_INTERNAL_CALL_PauseP12Il2CppObject, _CameraPathAnimator_Pause_m37034750 , __Z64Register_UnityEngineInternal_GIDebugVisualisation_PauseCycleModev , __Z52Register_UnityEngine_AudioSource_INTERNAL_CALL_Pausev , _GvrVideoPlayerTexture_Pause_m933228683_MetadataUsageId , __Z42GIDebugVisualisation_CUSTOM_PauseCycleModev , _VuforiaRendererImpl_Pause_m2076107180 , _VuforiaManagerImpl_Pause_m536248066 , _AudioSource_INTERNAL_CALL_Pause_m835013885 , __Z54Register_UnityEngine_WebCamTexture_INTERNAL_CALL_Pausev , _GvrAudioSource_Pause_m470842017_MetadataUsageId , _VuforiaRendererImpl_Pause_m2076107180_MetadataUsageId , __Z40WebCamTexture_CUSTOM_INTERNAL_CALL_PauseP12Il2CppObject , _GvrVideoPlayerTexture_Pause_m933228683 , _GvrVideoPlayerTexture_PauseVideo_m1619452790 , _GvrAudioSource_Pause_m470842017 , _GvrAudioSoundfield_Pause_m2499230617 , _GvrDevice_Pause_m3130736102 , _GvrVideoPlayerTexture_PauseVideo_m1619452790_MetadataUsageId , _AudioSource_Pause_m71375470 , _VuforiaManagerImpl_Pause_m536248066_MetadataUsageId )

"__TAG_ShareTextWithImage", referenced from:

  _GeneralSharingiOSBridge__TAG_ShareTextWithImage_m3312875960 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GeneralSharingiOSBridge__TAG_ShareTextWithImage_m3312875960)

"_SetTextureId", referenced from:

  _GvrDevice_PostRender_m886618576 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_SetTextureId_m673438129 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_SetTextureId_m673438129)

"_EnableElectronicDisplayStabilization", referenced from:

  _GvrDevice_SetElectronicDisplayStabilizationEnabled_m52698179 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_EnableElectronicDisplayStabilization_m2158693033 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_EnableElectronicDisplayStabilization_m2158693033)

"_GetProfile", referenced from:

  _GvrDevice_UpdateProfile_m1977743270 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_GetProfile_m4043616196 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_GetProfile_m4043616196, _WebCamProfile_GetProfile_m1910850226 , _WebCamProfile_GetProfile_m1910850226_MetadataUsageId )

"_SetNeckModelFactor", referenced from:

  _GvrDevice_SetNeckModelScale_m3708496091 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_SetNeckModelFactor_m2187252390 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_SetNeckModelFactor_m2187252390)

"_setUILayerEnabled", referenced from:

  _iOSDevice_SetUILayerEnabled_m3957538381 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_setUILayerEnabled_m662654701 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_setUILayerEnabled_m662654701)

"_launchSettingsDialog", referenced from:

  _iOSDevice_ShowSettingsDialog_m40117622 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_launchSettingsDialog_m1181993736 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_launchSettingsDialog_m1181993736)

"_setShowVrBackButtonOnlyInVR", referenced from:

  _iOSDevice_SetShowVrBackButtonOnlyInVR_m3599925418 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_setShowVrBackButtonOnlyInVR_m3586471114 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_setShowVrBackButtonOnlyInVR_m3586471114)

"_GetHeadPose", referenced from:

  _GvrDevice_UpdateState_m1865776730 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_GetHeadPose_m1133300508 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_GetHeadPose_m1133300508, _BaseVRDevice_GetHeadPose_m3383699254 )

"_isOpenGLAPI", referenced from:

  _iOSDevice_Init_m2331052736 in Bulk_Assembly-CSharp_1.o


  _iOSDevice_isOpenGLAPI_m3529398287 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _iOSDevice_isOpenGLAPI_m3529398287)

"_Resume", referenced from:

  _GvrDevice_OnPause_m418769636 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_Resume_m1877212629 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_Resume_m1877212629)

"_GetViewParameters", referenced from:

  _GvrDevice_UpdateView_m2561982282 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_GetViewParameters_m4241044874 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_GetViewParameters_m4241044874)

"_EnableDistortionCorrection", referenced from:

  _GvrDevice_SetDistortionCorrectionEnabled_m4084064685 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_EnableDistortionCorrection_m2929452511 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_EnableDistortionCorrection_m2929452511)

"_Stop", referenced from:

  _GvrDevice_OnApplicationQuit_m1286659510 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_Stop_m2841135994 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _FMOD_Channel_Stop, __Z39WebCamTexture_CUSTOM_INTERNAL_CALL_StopP12Il2CppObject , __Z23AudioSource_CUSTOM_StopP12Il2CppObject , __Z52Register_UnityEngine_ProceduralMaterial_StopRebuildsv , __Z38ProceduralMaterial_CUSTOM_StopRebuildsv , __Z38MonoBehaviour_CUSTOM_StopAllCoroutinesP12Il2CppObject , __Z39MonoBehaviour_CUSTOM_StopCoroutine_AutoP12Il2CppObjectS0_ , __Z52MonoBehaviour_CUSTOM_StopCoroutineViaEnumerator_AutoP12Il2CppObjectS0_ , __Z34MonoBehaviour_CUSTOM_StopCoroutineP12Il2CppObjectP12Il2CppString , __Z41Register_UnityEngine_LocationService_Stopv , __Z51Register_UnityEngine_Handheld_StopActivityIndicatorv , __Z37Handheld_CUSTOM_StopActivityIndicatorv , _SmartTerrainTrackerAbstractBehaviour_StopSmartTerrainTracker_m556875331 , __Z37Register_UnityEngine_AudioSource_Stopv , __Z41GIDebugVisualisation_CUSTOM_StopCycleModev , __Z43Register_UnityEngine_Animator_StopRecordingv , __Z50Register_UnityEngine_Animation_Internal_StopByNamev , __Z36Animation_CUSTOM_Internal_StopByNameP12Il2CppObjectP12Il2CppString , _MonoBehaviour_StopCoroutine_m1170478282 , __Z52Register_UnityEngine_MonoBehaviour_StopAllCoroutinesv , __Z48Register_UnityEngine_MonoBehaviour_StopCoroutinev , __Z53Register_UnityEngine_MonoBehaviour_StopCoroutine_Autov , _CloudRecoImageTargetImpl_StopExtendedTracking_m3289519250 , _GvrAudioSource_Stop_m896185459 , _WebCamImpl_StopCamera_m3184021270 , _MonoBehaviour_StopCoroutine_Auto_m1923670638 , _WebCamTexAdaptorImpl_Stop_m946549237 , _CameraDeviceImpl_StopCameraDevice_m4211349264 , _RotationalPlayModeDeviceTrackerImpl_Stop_m3812319390_MetadataUsageId , __Z60Register_UnityEngine_Apple_ReplayKit_ReplayKit_StopRecordingv , __Z35Animation_CUSTOM_INTERNAL_CALL_StopP12Il2CppObject , _MixedRealityController_StopCameraAndTrackersIfNotRequired_m2636481967_MetadataUsageId , _MarkerImpl_StopExtendedTracking_m1695428666_MetadataUsageId , _AudioSource_Stop_m3452679614 , _VuforiaNativeIosWrapper_StopExtendedTracking_m577155968 , _ObjectTargetImpl_StopExtendedTracking_m2569701850_MetadataUsageId , _NullWebCamTexAdaptor_Stop_m2622320100 , _VuMarkTargetImpl_StopExtendedTracking_m2975163645 , _VuforiaNullWrapper_StopExtendedTracking_m3950014379 , _DigitalEyewearAbstractBehaviour_Stop_m3628379609_MetadataUsageId , _RotationalDeviceTrackerImpl_Stop_m2160469823_MetadataUsageId , _TextRecoAbstractBehaviour_StopTextTracker_m179921704_MetadataUsageId , _VuforiaRuntimeUtilities_StopCameraIfPossible_m3811831411_MetadataUsageId , _UserDefinedTargetBuildingAbstractBehaviour_StopScanning_m2341680829 , _TextTrackerImpl_Stop_m119305535_MetadataUsageId , _TextTrackerImpl_Stop_m119305535 , _VuforiaNativeWrapper_StopExtendedTracking_m809694617 , _ObjectTargetImpl_StopExtendedTracking_m2569701850 , _MixedRealityController_StopDeviceTracker_m431585225_MetadataUsageId , _MixedRealityController_StopCameraAndTrackersIfNotRequired_m2636481967 , _MarkerTrackerImpl_Stop_m450099344_MetadataUsageId , _MarkerTrackerImpl_Stop_m450099344 , _MarkerImpl_StopExtendedTracking_m1695428666 , _PlanetSwitch_VR_StopAnim_m2488592213 , _DeviceTrackerAbstractBehaviour_StopDeviceTracker_m341136931_MetadataUsageId , _DeviceTrackerAbstractBehaviour_StopDeviceTracker_m341136931 , _CloudRecoImageTargetImpl_StopExtendedTracking_m3289519250_MetadataUsageId , _CloudRecoAbstractBehaviour_StopCloudReco_m599277347_MetadataUsageId , _CloudRecoAbstractBehaviour_StopCloudReco_m599277347 , _CameraDeviceImpl_StopCameraDevice_m4211349264_MetadataUsageId , _CameraDeviceImpl_Stop_m2928202319 , _PlanetSwitch_VR_StopAnim_m2488592213_MetadataUsageId , _RotationalPlayModeDeviceTrackerImpl_Stop_m3812319390 , _DigitalEyewearAbstractBehaviour_Stop_m3628379609 , _ScrollRect_StopMovement_m1824352159 , _MonoBehaviour_StopCoroutine_m1668572632 , _TweenRunner_1_StopTween_m3552027891_MethodInfo_var , __Z30ReplayKit_CUSTOM_StopRecordingv , __Z29Animator_CUSTOM_StopRecordingP12Il2CppObject , _SmartTerrainTrackerImpl_Stop_m1218149192 , _VuforiaRuntimeUtilities_StopCameraIfPossible_m3811831411 , __Z49Register_UnityEngine_Animation_INTERNAL_CALL_Stopv , _VuforiaAbstractBehaviour_StopVuforia_m2147881511_MetadataUsageId , _CameraDeviceImpl_Stop_m2928202319_MetadataUsageId , _GvrAudioSoundfield_Stop_m788222535 , _FMOD_SoundGroup_Stop , _VuforiaAbstractBehaviour_StopVuforia_m2147881511 , _WebCamTexture_INTERNAL_CALL_Stop_m3253711615 , _MonoBehaviour_StopCoroutineViaEnumerator_Auto_m4046945826 , __Z63Register_UnityEngine_Apple_ReplayKit_ReplayKit_StopBroadcastingv , _ObjectTrackerImpl_Stop_m3775943247_MetadataUsageId , _GvrPointerScrollInput_StopScrollingIfNecessary_m3011539456_MetadataUsageId , __Z63Register_UnityEngineInternal_GIDebugVisualisation_StopCycleModev , _ReconstructionImpl_Stop_m2391810884_MetadataUsageId , __Z42Register_UnityEngine_Animator_StopPlaybackv , __Z33ReplayKit_CUSTOM_StopBroadcastingv , _TweenRunner_1_StopTween_m3552027891_gshared , _MonoBehaviour_StopAllCoroutines_m1675795839 , _TargetFinderImpl_Stop_m1069546045_MetadataUsageId , _ReconstructionImpl_StopNavMeshUpdates_m3341200882 , _SmartTerrainTrackerImpl_Stop_m1218149192_MetadataUsageId , _QRCodeDecodeController_StopWork_m2682134058 , _GvrPointerScrollInput_StopScrollingIfNecessary_m3011539456 , _TextRecoAbstractBehaviour_StopTextTracker_m179921704 , _GvrAudioSource_Stop_m896185459_MetadataUsageId , __Z27LocationService_CUSTOM_StopP12Il2CppObject , _LeaseManager_StopManager_m2176663593 , _QRCodeDecodeController_StopWork_m2682134058_MetadataUsageId , _ImageTargetBuilderImpl_StopScan_m1055866958_MetadataUsageId , _ObjectTrackerImpl_Stop_m3775943247 , _RotationalDeviceTrackerImpl_Stop_m2160469823 , _TweenRunner_1_StopTween_m2135918118_gshared , _MonoBehaviour_StopCoroutine_m987450539 , __Z66Register_UnityEngine_MonoBehaviour_StopCoroutineViaEnumerator_Autov , _TargetFinderImpl_Stop_m1069546045 , _CameraPathAnimator_Stop_m3702299170 , _SmartTerrainTrackerAbstractBehaviour_StopSmartTerrainTracker_m556875331_MetadataUsageId , __Z53Register_UnityEngine_WebCamTexture_INTERNAL_CALL_Stopv , _DeviceCameraController_StopWork_m1514567487 , _GvrDevice_Stop_m2841135994 , _ReconstructionImpl_Stop_m2391810884 , _WebCamTexture_Stop_m4045220381 , _FMOD_ChannelGroup_Stop , _MixedRealityController_StopDeviceTracker_m431585225 , _PlanetSwitch_VR_StopAnim_m2488592213_MethodInfo_var , __Z28Animator_CUSTOM_StopPlaybackP12Il2CppObject , _ImageTargetBuilderImpl_StopScan_m1055866958 )

"_markerTrackerDestroyMarker", referenced from:

  _VuforiaNativeIosWrapper_MarkerTrackerDestroyMarker_m2583548702 in Bulk_Vuforia.UnityExtensions_1.o


  _VuforiaNativeIosWrapper_markerTrackerDestroyMarker_m4114512382 in Bulk_Vuforia.UnityExtensions_1.o


 (maybe you meant: _VuforiaNativeWrapper_markerTrackerDestroyMarker_m1347649653, _VuforiaNativeIosWrapper_markerTrackerDestroyMarker_m4114512382 )

"_SetUnityVersion", referenced from:

  _GvrDevice_Init_m3049041732 in Bulk_Assembly-CSharp_1.o


  _GvrDevice_SetUnityVersion_m937814393 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GvrDevice_SetUnityVersion_m937814393)

"__TAG_ShareSimpleText", referenced from:

  _GeneralSharingiOSBridge__TAG_ShareSimpleText_m2490254245 in Bulk_Assembly-CSharp_1.o


  _GeneralSharingiOSBridge_ShareSimpleText_m2098330647 in Bulk_Assembly-CSharp_1.o


 (maybe you meant: _GeneralSharingiOSBridge__TAG_ShareSimpleText_m2490254245)

ld: symbol(s) not found for architecture arm64

clang: error: linker command failed with exit code 1 (use -v to see invocation)

@joejo-unity
Copy link

joejo-unity commented Jun 12, 2017 via email

@ranjanappa
Copy link

Did that, no use.
Still throwing same errors.

@joejo-unity
Copy link

joejo-unity commented Jun 12, 2017 via email

@ranjanappa
Copy link

Should i delete Assets/Plugin folder in Unity ?
Where is the plugin/* folder of Google and Vuforia ?

@joejo-unity
Copy link

joejo-unity commented Jun 12, 2017 via email

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants