GithubHelp home page GithubHelp logo

azure / azure-spatial-anchors-samples Goto Github PK

View Code? Open in Web Editor NEW
294.0 36.0 135.0 1.65 MB

Azure Spatial Anchors sample code

License: Other

C++ 28.86% HLSL 0.64% C# 42.50% Ruby 0.19% Objective-C 7.63% Swift 5.44% Java 14.24% CMake 0.22% GLSL 0.13% Dockerfile 0.09% C 0.06%

azure-spatial-anchors-samples's Introduction

Azure Spatial Anchors Samples

Welcome to the Azure Spatial Anchors samples repository on GitHub. Azure Spatial Anchors is a managed cloud service and platform that enables multi-user, spatially aware mixed reality and augmented reality (MR/AR) apps for HoloLens, iOS devices with ARKit, and Android devices with ARCore. For more information, see Azure Spatial Anchors documentation.

Create your first app

Follow the quickstart tutorials below to learn how to deploy the sample applications included in this repository. Note that both Git and Git LFS are required to properly clone the repository.

Android Java

HoloLens C++

iOS Swift/Objective-C

Unity on Android

Unity on HoloLens

Unity on iOS

Xamarin on Android

Xamarin on iOS

Enable sharing in MR/AR across sessions and devices

MR/AR sharing across devices and sessions

Key Concepts

Create and locate anchors

Anchor Relationships

Experience Guidelines

Frequently Asked Questions (FAQ)

Support

Have an idea or suggestion? Give us your feedback

Have an issue? Ask the community on Stack Overflow OR Open a support ticket

azure-spatial-anchors-samples's People

Contributors

ali-emami avatar craigktreasure avatar darax avatar mehranazimi-msft avatar microsoft-github-policy-service[bot] avatar microsoftopensource avatar mschofie avatar msftgits avatar msftradford avatar reneschulte avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

azure-spatial-anchors-samples's Issues

Screen freezes when session start (Unity_Android)

I followed the official document to create CloudSpatialAnchorSession, which is same as the steps in AzureSpatialAnchorsDemoWrapper.CreateNewCloudSession(), the screen get frozen when I start the session. I check the sample and found that for Android, it creates the session by calling java class. I just want to confirm, is that for some reason just a temporary workaround ?

-------------code from AzureSpatialAnchorDemoWrapper.cs, creating a session-------------------

        UnityAndroidHelper.Instance.DispatchUiThread(unityActivity =>
        {
            // We should only run the java initialization once
            if (!JavaInitialized)
            {
                using (AndroidJavaClass cloudServices = new AndroidJavaClass("com.microsoft.CloudServices"))
                {
                    cloudServices.CallStatic("initialize", unityActivity);
                    JavaInitialized = true;
                }
            }
            this.CreateNewCloudSession();
        });

The document that I followed: https://docs.microsoft.com/en-us/azure/spatial-anchors/how-tos/create-locate-anchors-unity

DllNotFoundException: AzureSpatialAnchors

I am building a HoloLens/Unity project. I am running into the same issue as this person because I cannot start from your sample project.

I have copied over all the assets from the AzureSpatialAnchorsPlugin folder in the sample. After pressing play, I get this error at runtime...

DllNotFoundException: AzureSpatialAnchors

...which appears after I create an AnchorLocateCriteria instance in my implementation. The AnchorLocateCriteria constructor is trying to access the native plugin. That made me realize, I don't actually know where the DLL is (indeed, it is not found). Usually for Unity samples of Azure services, there is a DLL file included in the sample project, or they ask us to download it from NuGet or something.

Where is the Microsoft.Azure.SpatialAnchors library?

My code seemingly compiles successfully because it looks like the SpatialAnchors library has been wrapped, and the wrapper has the same namespace.

Event Names in AzureSpatialAnchorsDemoWrapper

AzureSpatialAnchorsDemoWrapper contains the following events:

  • OnAnchorLocated
  • OnLocateAnchorsCompleted
  • OnSessionError
  • OnSessionUpdated
  • OnLogDebug

However, per Event Design and Standard .Net event patterns, "On" should only be used to name a protected method that raises the event.

✓ DO use a protected virtual method to raise each event. This is only applicable to nonstatic events on unsealed classes, not to structs, sealed classes, or static events.

The purpose of the method is to provide a way for a derived class to handle the event using an override. Overriding is a more flexible, faster, and more natural way to handle base class events in derived classes. By convention, the name of the method should start with "On" and be followed with the name of the event.

Unable to localize when using Android NDK

I am trying to use spatial anchors on my purely C++ Android project, but have not been able to localize anchors; I can confirm that the anchors are being uploaded to Azure, and the ID is being found when I query the anchors, but for some reason I keep seeing LocateAnchorStatus::NotLocated and wasRelocalized[0] on the logs. I even used CloudSpatialAnchorSessionDiagnostics to save keyframes, and everything seems correct. I am also creating the anchors at identity every-time. Is there a recommended way to diagnose localization issues? I have been trying to debug this issue for a few days without success.

As part of my pure C++ project, I am initializing Microsoft's CloudServices from C++, and I am also starting/destroying the session, creating anchors, and querying anchors on a OpenGL context created on the C++ side. Here's the simplified code (the render method is called by a method similar to OpenGL's onDrawFrame):

Session::Session() {
    jobject activity = helpers::getMainActivity();

    jclass cloudServicesClass = env->FindClass("com/microsoft/CloudServices");

    jmethodID initializeCloudServices = env->GetStaticMethodID(cloudServicesClass, "initialize", "(Landroid/content/Context;)V");

    env->CallStaticVoidMethod(cloudServicesClass, initializeCloudServices, activity);

    env->DeleteLocalRef(activity);
}

Session::run() {
    _spatialAnchorState = SpatialAnchorState::createSession;
}

Session::render() {
   ArStatus status;

    ArSession_setCameraTextureName(_platformSession, _textureHandle);

    status = ArSession_update(_platformSession, _currentPlatformFrame);

    switch (_spatialAnchorState) {
        case SpatialAnchorState::createSession: {
            createSpatialAnchorSession();
            _spatialAnchorState = SpatialAnchorState::sessionCreated;
        }
            break;
        case SpatialAnchorState::createAnchor: {
            createSpatialAnchor();
            _spatialAnchorState = SpatialAnchorState::anchorCreated;
        }
            break;
        case SpatialAnchorState::queryAnchor: {
            querySpatialAnchor();
            _spatialAnchorState = SpatialAnchorState::anchorQueried;
        }
            break;
        case SpatialAnchorState::destroySession: {
            destroySpatialAnchorSession();
            _spatialAnchorState = SpatialAnchorState::sessionDestroyed;
        }
            break;
    }

    if (_cloudSpatialAnchorSession != nullptr) {
        _cloudSpatialAnchorSession->ProcessFrame(_currentPlatformFrame);
    }
}

void Session::createSpatialAnchorSession(bool withDiagnostics) {
    _cloudSpatialAnchorSession = std::make_shared<Microsoft::Azure::SpatialAnchors::CloudSpatialAnchorSession>();
    _cloudSpatialAnchorSession->Session(_platformSession);
    _cloudSpatialAnchorSession->Configuration()->AccountId(SpatialAnchorsAccountId);
    _cloudSpatialAnchorSession->Configuration()->AccountKey(SpatialAnchorsAccountKey);
    _cloudSpatialAnchorSession->LogLevel(Microsoft::Azure::SpatialAnchors::SessionLogLevel::All);
​
    if (withDiagnostics) {
        _cloudSpatialAnchorSessionDiagnostics = _cloudSpatialAnchorSession->Diagnostics();
        _cloudSpatialAnchorSessionDiagnostics->LogLevel(
                Microsoft::Azure::SpatialAnchors::SessionLogLevel::All);
        _cloudSpatialAnchorSessionDiagnostics->LogDirectory("/mnt/sdcard/diagnostics");
        _cloudSpatialAnchorSessionDiagnostics->ImagesEnabled(true);
        _cloudSpatialAnchorSessionDiagnostics->MaxDiskSizeInMB(2000);
    }
​
    _errorToken = _cloudSpatialAnchorSession->Error([](auto&&, auto&& args) {
        auto errorCode = args->ErrorCode();
        auto errorMessage = args->ErrorMessage();
        std::cout << "MS error code: " << errorMessage << static_cast<int>(errorCode);
    });
​
    _onLogDebugToken = _cloudSpatialAnchorSession->OnLogDebug([](auto&&, auto&& args) {
        auto message = args->Message();
        std::cout << "MS debug message: " << message;
    });
​
    _sessionUpdatedToken = _cloudSpatialAnchorSession->SessionUpdated([this](auto&&, auto&& args) {
        auto status = args->Status();
        bool progressOnSavingData = status->RecommendedForCreateProgress() >= 1.0f;
        if (progressOnSavingData) {
            std::ostringstream str;
            std::cout << "MS progress is " << (status->RecommendedForCreateProgress() * 100) << "%";
        }
    });
​
    _anchorLocatedToken = _cloudSpatialAnchorSession->AnchorLocated([this](auto &&, auto &&args) {
        switch (args->Status()) {
            case LocateAnchorStatus::AlreadyTracked: {
                std::cout << "spatial-anchor already tracked";
            }
                break;
            case LocateAnchorStatus::Located: {
                std::cout << "spatial-anchor located";
            }
                break;
            case LocateAnchorStatus::NotLocated: {
                std::cout << "spatial-anchor not located";
            }
                break;
            case LocateAnchorStatus::NotLocatedAnchorDoesNotExist: {
                std::cout << "spatial-anchor Does not exist";
            }
                break;
        }
    });
​
    _locateAnchorsCompletedToken = _cloudSpatialAnchorSession->LocateAnchorsCompleted(
            [this](auto &&, auto &&args) {
                std::cout << "Locate anchor completed";
            });
​
    _cloudSpatialAnchorSession->Start();
}
​
void Session::createSpatialAnchor() {
    if (!_localAnchor) {
        std::cout << "Local anchor is NULL on spatial-anchor creation";
        return;
    }
​
    ArTrackingState arTrackingState = AR_TRACKING_STATE_STOPPED;
    ArAnchor_getTrackingState(_platformSession, _localAnchor, &arTrackingState);
    if (arTrackingState != AR_TRACKING_STATE_TRACKING) {
        std::cout << "Local anchor tracking state is not valid on spatial-anchor creation";
        return;
    }
​
    _spatialAnchor = std::make_shared<Microsoft::Azure::SpatialAnchors::CloudSpatialAnchor>();
    _spatialAnchor->LocalAnchor(_localAnchor);
​
    std::chrono::system_clock::time_point now = std::chrono::system_clock::now();
    std::chrono::system_clock::time_point oneWeekFromNow = now + std::chrono::hours(3 * 24);
    const int64_t oneWeekFromNowUnixEpochTimeMs = std::chrono::duration_cast<std::chrono::milliseconds>(oneWeekFromNow.time_since_epoch()).count();
    _spatialAnchor->Expiration(oneWeekFromNowUnixEpochTimeMs);
​
    _cloudSpatialAnchorSession->CreateAnchorAsync(_spatialAnchor, [this](Status status) {
        if (status != Status::OK) {
          std::cout << "Unable to create MS Azure spatial-anchor with status: " << static_cast<int>(status);
          return;
        }
​
       // TODO: Handle created anchor here 
​
        _spatialAnchorState = SpatialAnchorState::destroySession;
    }
    );
}
​
void Session::querySpatialAnchor() {
    if (_spatialAnchorId.empty()) {
        std::cout << "spatial-anchor ID is empty on query";
        return;
    }

    if (_cloudSpatialAnchorWatcher != nullptr)
    {
        _cloudSpatialAnchorWatcher->Stop();
        _cloudSpatialAnchorWatcher.reset();
    }
​
    auto criteria = std::make_shared<AnchorLocateCriteria>();
​
    criteria->Identifiers({_spatialAnchorId});
​
    _cloudSpatialAnchorWatcher = _cloudSpatialAnchorSession->CreateWatcher(criteria);
}
​
void Session::destroySpatialAnchorSession() {
    if (_cloudSpatialAnchorSession != nullptr)
    {
        _cloudSpatialAnchorSession->SessionUpdated(_sessionUpdatedToken);
        _cloudSpatialAnchorSession->OnLogDebug(_onLogDebugToken);
        _cloudSpatialAnchorSession->Error(_errorToken);
        _cloudSpatialAnchorSession->AnchorLocated(_anchorLocatedToken);
        _cloudSpatialAnchorSession->LocateAnchorsCompleted(_locateAnchorsCompletedToken);
​
        _cloudSpatialAnchorSession->Stop();
        _cloudSpatialAnchorSession.reset();
    }
​
    if (_cloudSpatialAnchorSessionDiagnostics) {
        _cloudSpatialAnchorSessionDiagnostics.reset();
        _cloudSpatialAnchorSessionDiagnostics = nullptr;
    }
​
    if (_cloudSpatialAnchorWatcher != nullptr) {
        _cloudSpatialAnchorWatcher->Stop();
        _cloudSpatialAnchorWatcher.reset();
    }
​
    if (_spatialAnchor) {
        _spatialAnchor.reset();
        _spatialAnchor = nullptr;
    }
}

I am also not seeing any session->Error([](auto&&, auto&& args) errors, so everything seems to be working as expected, except that the anchors are never localized.

Here are the logs for anchor creation:

07-26 15:43:40.905 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.905750000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Session Identifier: 8aa494d9-f799-46ef-89c0-b27424e20939 [AUTOMATION]
07-26 15:43:40.905 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.905837000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured AnchorServiceUrl: https://manage.sa.mixedreality.azure.com/
07-26 15:43:40.905 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.905874000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured AuthServiceUrl: https://sts.mixedreality.azure.com/
07-26 15:43:40.905 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.905909000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured AccountId: [removed]
07-26 15:43:40.905 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.905952000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured DeviceOsVersion: 7.0
07-26 15:43:40.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.905983000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured SdkPackageType: 
07-26 15:43:40.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.906014000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured SdkVersion: 1.1.1
07-26 15:43:40.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.906043000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured ArPlatformVersion: 7.0
07-26 15:43:40.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.906073000 UTC][3752651040][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured MiddlewareVersions: 
07-26 15:43:40.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:40.906893000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::MobileNeighborhoodManager] Initialized the mobile neighborhood manager.
07-26 15:43:42.472 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:42.472281000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:42.472 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:42.472369000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:42.472 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:42.472832000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:42.531 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:42.531399000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '5e0dbfda63a8f840bf2b7aae9c85c683' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:42.531 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:42.531594000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:42.531 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:42.531624000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:42.531 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:42.531653000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:44.294 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:44.294141000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:44.294 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:44.294247000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:44.295 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:44.294942000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:44.371 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.371119000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '9af6f73d4676ee479f5344d425ec643c' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:44.371 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.371286000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:44.371 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.371350000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:44.371 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.371415000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:44.763 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:44.763551000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:44.763 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:44.763670000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:44.779 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:44.779067000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:44.847 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.847213000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'cb0a6cfea44b8f44bf5b50e1f376f126' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:44.847 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.847490000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:44.847 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.847566000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:44.847 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:44.847642000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:45.771 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:45.771913000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:45.772 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:45.772051000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:45.772 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:45.772791000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:45.855 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:45.855753000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '3057aff7b177cd4aa80e98201c89097b' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:45.856 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:45.856409000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:45.856 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:45.856483000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:45.856 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:45.856556000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:46.113 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:46.113567000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:46.113 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:46.113673000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:46.114 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:46.114294000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:46.190 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.190630000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '498f0fbc27ad184d9ed44114ba96ddbe' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:46.191 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.191002000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:46.191 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.191055000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:46.191 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.191133000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:46.442 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:46.442325000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:46.442 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:46.442448000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:46.450 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:46.450825000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:46.538 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.538143000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '8cb131392ce36f4993b7e1788c03b348' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:46.538 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.538407000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:46.538 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.538475000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:46.538 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:46.538540000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:47.483 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.483270000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:47.483 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.483375000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:47.490 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.490802000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:47.563 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.563204000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'dc587d6419f372439a0f9bfcfc3aaf84' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:47.563 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.563373000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:47.563 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.563413000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:47.563 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.563454000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:47.665 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.665332000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:47.665 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.665442000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:47.675 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.675092000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:47.769 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.769753000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '7055b53ae5d34c41adc0220b03ee5cb8' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:47.770 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.769973000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:47.770 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.770033000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:47.770 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:47.770093000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:47.943 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.943777000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:47.943 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.943868000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:47.944 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:47.944207000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:48.003 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.3349000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '1a987b3eb253574aa11cdf21f08d8ee2' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:48.003 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.3536000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:48.003 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.3573000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:48.003 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.3623000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:48.509 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.509696000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:48.509 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.509829000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:48.510 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.510196000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:48.573 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.573253000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'bb744f496b225d4e89e9eaea5bd3f981' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:48.573 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.573550000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:48.573 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.573610000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:48.573 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.573667000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:48.879 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.879594000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:48.879 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.879674000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:48.880 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.879990000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:48.965 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.965625000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '42202b514178f544896381401863a949' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:48.965 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.965852000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:48.965 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.965902000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:48.965 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:48.965952000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:48.991 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.990938000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:48.991 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.991066000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:48.995 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:48.995347000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:49.051 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.51159000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '996949349e4e5742b67e8189dd082047' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:49.051 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.51321000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:49.051 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.51362000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:49.051 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.51403000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:49.239 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.239840000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:49.240 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.239984000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:49.240 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.240300000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:49.315 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.315750000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '6ab750635dd73a4f9dee9c214218ff3f' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:49.316 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.315972000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:49.316 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.316033000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:49.316 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.316095000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:49.596 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.596427000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:49.596 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.596539000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:49.599 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.599756000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:49.693 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.693529000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'e1737284a4ee7f4e8458950c92391642' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:49.693 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.693871000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:49.693 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.693952000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:49.694 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.694030000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:49.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.906105000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:49.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.906201000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:49.906 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:49.906613000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:49.997 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.997439000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '4bb4996a81eb2d4784586437dfcfa175' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:49.997 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.997740000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:49.997 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.997798000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:49.997 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:49.997852000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:50.143 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.143052000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:50.143 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.143112000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:50.143 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.143380000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:50.185 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.185384000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'adce430a53d51d49a8dd0dffd2d9d4ca' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:50.185 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.185573000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:50.185 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.185602000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:50.185 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.185632000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:50.477 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.477837000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:50.477 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.477884000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:50.478 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.478234000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:50.514 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.514841000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'cc095fd95bbc244aa7db016bc3a3e9d0' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:50.515 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.514996000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:50.515 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.515024000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:50.515 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.515053000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:50.728 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.728678000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:50.728 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.728811000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:50.734 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:50.734389000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:50.833 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.833738000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'b835d7c64bfbc746911208d50b3cc9c2' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:50.834 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.834010000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:50.834 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.834071000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:50.834 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:50.834131000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:51.000 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:51.24000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:51.000 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:51.151000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:51.000 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:51.505000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:51.083 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.83529000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '8dfb9ccc50ac54458bf308b599a295ce' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:51.083 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.83723000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:51.083 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.83760000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:51.083 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.83793000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:51.892 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:51.892358000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:51.892 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:51.892453000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:51.893 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:51.893129000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:51.949 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.949791000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '91f15eeb2a79564b95467163278eea17' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:51.949 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.949974000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:51.950 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.950012000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:51.950 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:51.950053000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: e). Notifying listeners now.
07-26 15:43:52.115 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.115658000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:52.115 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.115705000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:52.115 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.115914000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:52.171 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.171557000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '60e0c32ea0f296448cbf4bf1f457b252' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:52.171 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.171737000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:52.171 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.171766000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:52.171 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.171795000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:52.374 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.374181000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:52.374 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.374276000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:52.375 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.375627000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:52.407 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.407379000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'f66ef0b2144bde4d98d7238d0ff63adc' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:52.407 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.407563000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:52.407 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.407593000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:52.407 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:52.407622000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:52.969 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.969864000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:52.969 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.969965000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:52.970 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:52.970474000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:53.028 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.27975000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'a4567b94b5daa240853e2ce45b4a5dd9' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:53.028 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.28235000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:53.028 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.28281000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:53.028 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.28326000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:53.234 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.234244000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:53.234 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.234390000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:53.235 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.235165000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:53.286 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.285966000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'e62b116d0a7d1c4184d58bd9cb782477' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:53.286 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.286127000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:53.286 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.286155000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:53.286 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.286184000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:53.389 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.389152000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:53.389 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.389214000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:53.394 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.394818000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:53.435 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.435395000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '3b4f84fd12e740438e352862785aa20e' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:53.435 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.435605000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:53.435 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.435641000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:53.435 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.435674000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:53.581 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.581770000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:53.581 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.581869000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:53.582 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.582211000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:53.657 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.656988000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '182781f01265fe49b3bcc3d384e48857' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:53.657 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.657269000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:53.657 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.657321000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:53.657 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.657369000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:53.802 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.802821000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:53.802 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.802873000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:53.803 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:53.803137000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:53.834 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.834849000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'ceb15d1b90c9874e9a3fca88adb4b890' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:53.835 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.835052000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:53.835 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.835082000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:53.835 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:53.835111000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:54.060 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:54.60338000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:54.060 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:54.60469000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:54.067 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:54.66912000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:54.150 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.150265000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '28edddd74ba24440b974f713e37bd1cc' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:54.150 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.150662000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:54.150 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.150787000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:54.150 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.150849000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:54.256 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:54.256579000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:54.256 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:54.256749000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:54.271 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:54.270915000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:54.355 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.355235000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '3476683ed4d89c469fb9ec05b81aac26' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:54.355 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.355571000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:54.355 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.355636000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:54.355 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:54.355807000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:55.241 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.241011000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:55.241 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.241147000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:55.251 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.251321000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:55.333 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.333216000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '48478dae8293ed408a08bf8e2a77ee70' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:55.333 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.333557000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:55.333 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.333650000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:55.333 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.333759000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:55.472 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.472679000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:55.472 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.472737000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:55.472 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.472943000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:55.510 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.510563000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'b081909488a94e4a95479dbe5a3090a7' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:55.510 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.510822000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:55.510 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.510857000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:55.510 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.510887000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:55.843 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.843257000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:55.843 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.843436000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:55.850 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:55.850834000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:55.902 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.902171000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'a7f7fdca4a1f8048a9dad5a1ad1bc88f' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:55.902 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.902402000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:55.902 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.902435000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:55.902 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:55.902472000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:56.772 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:56.772653000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:56.772 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:56.772762000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:56.780 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:56.780886000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:56.867 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:56.867905000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'b251e40b298b5940858b683e12847b39' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:56.868 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:56.868294000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:56.868 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:56.868357000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:56.868 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:56.868421000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:58.384 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:58.384202000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:58.384 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:58.384335000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:58.390 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:58.390875000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:58.494 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.494782000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'c7abe255553b8448acefc305c23fe48c' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:58.495 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.495079000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:58.495 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.495128000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:58.495 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.495176000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:43:58.767 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:58.767105000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:43:58.767 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:58.767229000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:43:58.769 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:43:58.769126000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:43:58.836 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.836209000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '23d892c1dcbc6a43805160d9fd752dce' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:43:58.836 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.836402000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:43:58.836 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.836444000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:43:58.836 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:43:58.836486000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:44:01.214 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:44:1.213992000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-26 15:44:01.214 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:44:1.214085000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-26 15:44:01.214 21927 21942 E test_spatial_anchors: E::[2019.7.26 22:44:1.214405000 UTC][3752651040][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-26 15:44:01.273 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:44:1.273411000 UTC][2984225056][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '47d655574ce4a44e8c757fceeca1348c' was added to the map, bumping out '00000000000000000000000000000000'.
07-26 15:44:01.273 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:44:1.273659000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-26 15:44:01.273 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:44:1.273697000 UTC][2984225056][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-26 15:44:01.273 21927 22084 E test_spatial_anchors: E::[2019.7.26 22:44:1.273735000 UTC][2984225056][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-26 15:44:01.650 21927 22195 E test_spatial_anchors: E::[2019.7.26 22:44:1.650858000 UTC][2773489952][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateForPlatformAnchor] Creating a neighborhood anchor.
07-26 15:44:01.651 21927 22105 E test_spatial_anchors: E::[2019.7.26 22:44:1.651157000 UTC][2963335456][my_session.cpp:439] MS debug message: StoreAndWatcherTrackedState::TryCreateInternalAsync for a new SpatialAnchor.
07-26 15:44:01.651 21927 22105 E test_spatial_anchors: E::[2019.7.26 22:44:1.651214000 UTC][2963335456][my_session.cpp:439] MS debug message: StoreAndWatcherTrackedState::TryCreateWithNewNeighborhoodAnchor
07-26 15:44:01.653 21927 22097 E test_spatial_anchors: E::[2019.7.26 22:44:1.653009000 UTC][2971691296][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetAnchorNeighborhoodDataAsync] Triangulating the keyframes.
07-26 15:44:06.378 21927 22097 E test_spatial_anchors: E::[2019.7.26 22:44:6.378247000 UTC][2971691296][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetAnchorNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-26 15:44:06.379 21927 22097 E test_spatial_anchors: E::[2019.7.26 22:44:6.379171000 UTC][2971691296][my_session.cpp:439] MS debug message: RestClient::CreateNeighborhoodAnchorAndSpatialAnchorAsync - ReqCV: gkzD+fGSRAmuv0fm8tEyEA
07-26 15:44:06.379 21927 22097 E test_spatial_anchors: E::[2019.7.26 22:44:6.379335000 UTC][2971691296][my_session.cpp:439] MS debug message: RestClient::GetAccessTokenAsync - ReqCV: Du+0TvUCSJKm9Wbyz16ckQ
07-26 15:44:07.133 21927 22100 E test_spatial_anchors: E::[2019.7.26 22:44:7.133918000 UTC][2968557856][my_session.cpp:439] MS debug message: N15SpatialServices21GetAccessTokenRequestE returned HTTP 200. ReqCV: Du+0TvUCSJKm9Wbyz16ckQ. RespCV: +BO0UT7JGE2Z8+tfewGMbw.0.
07-26 15:44:08.221 21927 22093 E test_spatial_anchors: E::[2019.7.26 22:44:8.221124000 UTC][2975869216][my_session.cpp:439] MS debug message: N15SpatialServices47CreateNeighborhoodAnchorAndSpatialAnchorRequestE returned HTTP 201. ReqCV: gkzD+fGSRAmuv0fm8tEyEA. RespCV: /6/n0anPrUy1Xi/NV995yQ.0.
07-26 15:44:08.221 21927 22093 E test_spatial_anchors: E::[2019.7.26 22:44:8.221417000 UTC][2975869216][my_session.cpp:439] MS debug message: RestClient::CreateNeighborhoodAnchorAndSpatialAnchorAsync - HTTP Response Status Code: 201
07-26 15:44:08.223 21927 22093 E test_spatial_anchors: E::[2019.7.26 22:44:8.223003000 UTC][2975869216][my_session.cpp:439] MS debug message: StoreAndWatcherTrackedState::CreateNeighborhoodAnchorAndSpatialAnchor for SpatialAnchor 0da5f183-76b8-448e-82de-3f8750842aeb succeeded! Its NeighborhoodAnchorId is 17293e4c-13de-4de5-9e5f-fdfa0b428475, and the IndexNeighborhoodDataId: 2afb03d7-9c9c-44d8-98ae-2df7e7d2f03c

And here are the logs for the anchor query:

07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764655000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Session Identifier: 072b6c33-fd0d-432d-91b3-0d6776e7860d [AUTOMATION]
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764751000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured AnchorServiceUrl: https://manage.sa.mixedreality.azure.com/
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764781000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured AuthServiceUrl: https://sts.mixedreality.azure.com/
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764809000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured AccountId: [removed]
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764835000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured DeviceOsVersion: 8.0.0
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764861000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured SdkPackageType: 
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764886000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured SdkVersion: 1.1.1
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764912000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured ArPlatformVersion: 8.0.0
07-27 06:43:45.764 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.764937000 UTC][3537369456][my_session.cpp:439] MS debug message: AzureSpatialAnchors - Configured MiddlewareVersions: 
07-27 06:43:45.765 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:45.765844000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::MobileNeighborhoodManager] Initialized the mobile neighborhood manager.
07-27 06:43:46.936 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:46.936725000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:46.936 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:46.936814000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:46.938 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:46.938176000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:46.995 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:46.995296000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'a7c4021b3373d5439ab9d97dee08b6f8' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:46.995 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:46.995460000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:46.995 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:46.995491000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:46.995 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:46.995520000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:47.601 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:47.601096000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:47.601 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:47.601328000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:47.616 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:47.616045000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:47.679 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.679534000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '16ddba9341d9de428590b6be1e5f748b' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:47.679 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.679753000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:47.679 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.679813000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:47.679 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.679868000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:47.880 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:47.880438000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:47.880 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:47.880520000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:47.881 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:47.881202000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:47.946 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.946713000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '73f8bb7f12cb7843b0c0e24a17536e23' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:47.946 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.946880000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:47.946 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.946934000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:47.947 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:47.946987000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:48.074 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.74309000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:48.074 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.74411000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:48.075 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.75154000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:48.135 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.135423000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '53b3811ccbcd9c48886f9cf3e56f171d' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:48.135 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.135634000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:48.135 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.135684000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:48.135 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.135731000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:48.398 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.398812000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:48.398 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.398909000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:48.407 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.407141000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:48.485 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.485787000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '7c0b7abd3f90194bb54f3050da9370db' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:48.486 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.486033000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:48.486 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.486100000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:48.486 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:48.486160000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:48.978 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.978510000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:48.978 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.978618000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:48.979 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:48.979385000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:49.057 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.57601000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'e021059ee609b742b154a3a665c60ff2' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:49.057 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.57811000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:49.057 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.57873000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:49.057 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.57935000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:49.143 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.143873000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:49.143 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.143951000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:49.144 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.144457000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:49.217 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.217719000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '5b397b30022fc84e80af335a5d3ebe3c' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:49.217 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.217955000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:49.218 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.218021000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:49.218 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.218082000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:49.338 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.338301000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:49.338 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.338400000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:49.347 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.347127000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:49.404 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.404398000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '650a6d556da0ea4c82e858736086adfa' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:49.404 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.404597000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:49.404 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.404653000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:49.404 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.404706000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:49.512 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.512567000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:49.512 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.512669000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:49.513 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.513305000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:49.604 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.604929000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '6a829cc57e9bfb4dab319fac970a0e9f' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:49.605 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.605142000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:49.605 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.605214000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:49.605 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.605283000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:49.798 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.798290000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:49.798 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.798413000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:49.798 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:49.798791000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:49.879 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.879768000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '951934073e1caf4193c1bea91f129a36' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:49.880 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.880084000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:49.880 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.880145000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:49.880 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:49.880197000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:50.118 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.118612000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:50.118 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.118737000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:50.119 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.119106000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:50.196 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.196011000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '7b844e7e31ab2e4d9b5f953e7847f31f' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:50.196 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.196283000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:50.196 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.196346000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:50.196 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.196406000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:50.347 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.347850000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:50.347 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.347911000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:50.348 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.348151000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:50.413 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.413275000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '754a2752c00fde4f9723765e2ec6fbf9' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:50.413 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.413548000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:50.413 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.413610000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:50.413 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.413665000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:50.711 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.711748000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:50.711 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.711830000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:50.712 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:50.712118000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:50.760 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.760787000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '05f26ae64d695544a852ee4c57fa29d1' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:50.760 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.760969000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:50.761 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.761002000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:50.761 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:50.761033000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:51.000 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:51.358000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:51.000 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:51.459000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:51.000 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:51.943000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:51.077 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.77375000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '05dea0c32e9c2c43a51e6f1cc12c5052' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:51.077 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.77655000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:51.077 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.77717000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:51.077 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.77773000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:51.269 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:51.269672000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:51.269 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:51.269757000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:51.270 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:51.270088000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:51.346 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.346150000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '1a80fef56ad1dc4c8b8ac18418af1724' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:51.346 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.346403000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:51.346 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.346464000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:51.346 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:51.346522000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:52.117 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.117572000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:52.117 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.117672000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:52.118 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.118437000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:52.199 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.199815000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'd273760cb1a97348ae4b71edab4bee49' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:52.200 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.200113000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:52.200 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.200175000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:52.200 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.200233000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:52.330 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.330722000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:52.330 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.330845000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:52.331 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.331290000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:52.431 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.431517000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'be9dab0e07dc7b449a74134679b1059a' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:52.431 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.431836000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:52.431 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.431908000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:52.432 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.431974000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:52.622 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.622185000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:52.622 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.622304000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:52.622 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:52.622724000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:52.696 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.696158000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'd672096d37f3dc488881513892512510' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:52.696 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.696365000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:52.696 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.696411000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:52.696 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:52.696452000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:53.374 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.374638000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:53.374 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.374736000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:53.375 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.375333000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:53.470 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.470137000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '8241e8d87ffccd4c8c24488a798ce9cd' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:53.470 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.470433000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:53.470 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.470496000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:53.470 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.470555000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:53.573 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.573118000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:53.573 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.573216000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:53.573 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.573540000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:53.647 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.647840000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '60bd406bc616ac4ca5972d102e34097d' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:53.648 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.648156000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:53.648 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.648224000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:53.648 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.648290000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: e). Notifying listeners now.
07-27 06:43:53.737 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.737546000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:53.737 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.737710000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:53.738 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.738136000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:53.818 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.818227000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'c3e1623d6f89a741a8014d248b218f9d' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:53.818 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.818502000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:53.818 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.818567000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:53.818 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:53.818629000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:53.937 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.937821000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:53.937 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.937950000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:53.938 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:53.938287000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:54.017 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.17756000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '0b627d2ec6ecec4bbc826e3a6a597e04' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:54.018 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.18041000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:54.018 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.18104000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:54.018 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.18184000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:54.193 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:54.193343000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:54.193 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:54.193468000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:54.193 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:54.193875000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:54.260 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.260799000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'eb6156bc2d46c94e927d6c7bb08791d3' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:54.261 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.261085000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:54.261 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.261137000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:54.261 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.261183000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:54.435 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:54.435824000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:54.435 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:54.435949000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:54.436 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:54.436373000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:54.514 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.513966000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '5624a2cc27578c44a3c4f9fe403a8a96' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:54.514 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.514313000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:54.514 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.514374000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:54.514 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:54.514431000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:55.401 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.401435000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:55.401 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.401564000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:55.412 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.412211000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:55.493 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.493602000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '2ce619ac0745c641b1ca5b52b40864d1' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:55.493 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.493895000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:55.493 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.493953000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:55.494 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.494007000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:55.632 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.632489000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:55.632 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.632614000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:55.633 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.632985000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:55.719 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.719793000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'dda60d0c5749b94496d35bb2523dd25a' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:55.720 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.720145000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:55.720 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.720207000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:55.720 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:55.720264000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:55.967 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.967749000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:55.967 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.967867000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:55.977 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:55.977310000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:56.053 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.53760000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '39bd7094a6c9c144a5c3e612bceab663' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:56.054 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.54083000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:56.054 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.54149000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:56.054 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.54208000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:43:56.911 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:56.911310000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:43:56.911 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:56.911441000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:43:56.911 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:43:56.911831000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:43:56.988 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.988259000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '851987c49c92b2439bbeb90a4957dc8e' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:43:56.988 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.988578000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:43:56.988 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.988615000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:43:56.988 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:43:56.988650000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:05.509 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:5.509349000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:05.509 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:5.509454000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:05.509 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:5.509812000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:05.602 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.602248000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '0f3ecd0a099c304289de5ef7db27699f' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:05.602 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.602660000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:05.602 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.602723000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:05.602 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.602784000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:05.693 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:5.693612000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:05.693 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:5.693703000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:05.694 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:5.693980000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:05.768 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.768664000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '07fc7d1fdc9cac40b1a00228474aaf36' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:05.769 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.769134000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:05.769 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.769203000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:05.769 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:5.769265000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:08.625 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:8.625043000 UTC][3537369456][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:08.627 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:8.627666000 UTC][3149982064][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:08.630 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:8.630864000 UTC][3149982064][my_session.cpp:439] MS debug message: RunDiscoverAsync - Creating new Pose Query Processor Stream
07-27 06:44:08.636 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:8.636224000 UTC][3149982064][my_session.cpp:439] MS debug message: RestClient::GetAccessTokenAsync - ReqCV: /E6T5mWGSHuCFPAQSwdXgg
07-27 06:44:08.636 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:8.636504000 UTC][3149982064][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 0. Cached SpatialAnchors: 0.
07-27 06:44:08.636 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:8.636768000 UTC][3146873200][my_session.cpp:439] MS debug message: GetPropertiesAndCVladsForDesiredSpatialAnchorIdsAsync - SetDesiredSpatialAnchors count SA Id[1] NA Id[0], locate strategy[0]
07-27 06:44:08.636 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:8.636938000 UTC][3146873200][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::ClearImageSignaturesForNeighborhoodAnchors] - Count[0]
07-27 06:44:08.637 29697 30807 E test_spatial_anchors: E::[2019.7.26 22:44:8.637420000 UTC][3145836912][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:08.637 29697 30807 E test_spatial_anchors: E::[2019.7.26 22:44:8.637582000 UTC][3145836912][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Created cached query root id[1], sending known poses count[0]
07-27 06:44:08.637 29697 30807 E test_spatial_anchors: E::[2019.7.26 22:44:8.637665000 UTC][3145836912][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:08.691 29697 30807 E test_spatial_anchors: E::[2019.7.26 22:44:8.691605000 UTC][3145836912][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:08.692 29697 30778 E test_spatial_anchors: E::[2019.7.26 22:44:8.692323000 UTC][3206588784][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:08.692 29697 30778 E test_spatial_anchors: E::[2019.7.26 22:44:8.692410000 UTC][3206588784][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:08.692 29697 30807 E test_spatial_anchors: E::[2019.7.26 22:44:8.692811000 UTC][3145836912][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[764171]
07-27 06:44:08.693 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:8.692966000 UTC][3207625072][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:08.693 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:8.693097000 UTC][3207625072][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:09.345 29697 30786 E test_spatial_anchors: E::[2019.7.26 22:44:9.338366000 UTC][3213875568][my_session.cpp:439] MS debug message: N15SpatialServices21GetAccessTokenRequestE returned HTTP 200. ReqCV: /E6T5mWGSHuCFPAQSwdXgg. RespCV: 6D/BKucpZ0aeo8Ah/7ic6A.0.
07-27 06:44:09.346 29697 30783 E test_spatial_anchors: E::[2019.7.26 22:44:9.346387000 UTC][3169671536][my_session.cpp:439] MS debug message: PoseQueryProcessorStream - ReqCV: hYZ5IwWvRu+PERV0O00byw
07-27 06:44:11.552 29697 30802 E test_spatial_anchors: E::[2019.7.26 22:44:11.552554000 UTC][3151018352][my_session.cpp:439] MS debug message: PoseQueryProcessorStream - ResCV: 31ipNfRlDUWD9NEGNbMEkA.0
07-27 06:44:11.553 29697 30802 E test_spatial_anchors: E::[2019.7.26 22:44:11.553076000 UTC][3151018352][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:11.553 29697 30802 E test_spatial_anchors: E::[2019.7.26 22:44:11.553195000 UTC][3151018352][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPropertiesEvent - [0da5f183-76b8-448e-82de-3f8750842aeb] was found. naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:11.553 29697 30802 E test_spatial_anchors: E::[2019.7.26 22:44:11.553285000 UTC][3151018352][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:11.553 29697 30814 E test_spatial_anchors: E::[2019.7.26 22:44:11.553673000 UTC][3138550128][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:11.553 29697 30814 E test_spatial_anchors: E::[2019.7.26 22:44:11.553917000 UTC][3138550128][my_session.cpp:439] MS debug message: StoreAndWatcherTrackedState::ProcessCompactImageSignatureEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], hasFilter[0xe6169e0c]
07-27 06:44:11.554 29697 30814 E test_spatial_anchors: E::[2019.7.26 22:44:11.554095000 UTC][3138550128][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SetCompactImageSignatureForNeighborhoodAnchor] 17293e4c-13de-4de5-9e5f-fdfa0b428475 : 36 bytes threshold 0.100000.
07-27 06:44:11.554 29697 30814 E test_spatial_anchors: E::[2019.7.26 22:44:11.554368000 UTC][3138550128][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:11.556 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:11.556663000 UTC][3166562672][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:11.556 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:11.556827000 UTC][3166562672][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:12.463 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:12.463595000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:12.463 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:12.463701000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:12.464 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:12.464110000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:12.464 29697 30786 E test_spatial_anchors: E::[2019.7.26 22:44:12.464930000 UTC][3213875568][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:12.465 29697 30786 E test_spatial_anchors: E::[2019.7.26 22:44:12.465012000 UTC][3213875568][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:12.549 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:12.549555000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'a265afd514b8a144830fe42ea564c205' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:12.550 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:12.550212000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:12.550 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:12.550289000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:12.550 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:12.550350000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:12.551 29697 30783 E test_spatial_anchors: E::[2019.7.26 22:44:12.551088000 UTC][3169671536][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:12.551 29697 30783 E test_spatial_anchors: E::[2019.7.26 22:44:12.551163000 UTC][3169671536][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:13.850 29697 30790 E test_spatial_anchors: E::[2019.7.26 22:44:13.850492000 UTC][3163453808][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:13.850 29697 30790 E test_spatial_anchors: E::[2019.7.26 22:44:13.850886000 UTC][3163453808][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:13.851 29697 30790 E test_spatial_anchors: E::[2019.7.26 22:44:13.851094000 UTC][3163453808][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:13.851 29697 30796 E test_spatial_anchors: E::[2019.7.26 22:44:13.851447000 UTC][3157236080][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:13.851 29697 30796 E test_spatial_anchors: E::[2019.7.26 22:44:13.851621000 UTC][3157236080][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:13.851 29697 30796 E test_spatial_anchors: E::[2019.7.26 22:44:13.851690000 UTC][3157236080][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:13.852 29697 30816 E test_spatial_anchors: E::[2019.7.26 22:44:13.852119000 UTC][3136477552][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:13.853 29697 30816 E test_spatial_anchors: E::[2019.7.26 22:44:13.853752000 UTC][3136477552][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:13.854 29697 30784 E test_spatial_anchors: E::[2019.7.26 22:44:13.854255000 UTC][3168635248][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:13.854 29697 30784 E test_spatial_anchors: E::[2019.7.26 22:44:13.854584000 UTC][3168635248][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:13.858 29697 30801 E test_spatial_anchors: E::[2019.7.26 22:44:13.858705000 UTC][3152054640][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: true [AUTOMATION]
07-27 06:44:13.891 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:13.891638000 UTC][3165526384][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:13.891 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:13.891888000 UTC][3165526384][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:13.897 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:13.897412000 UTC][3165526384][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[789656]
07-27 06:44:13.897 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:13.897557000 UTC][3165526384][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:13.897 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:13.897597000 UTC][3165526384][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:14.491 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:14.491806000 UTC][3149982064][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:14.492 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:14.491898000 UTC][3149982064][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:15.675 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:15.675230000 UTC][3146873200][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:15.675 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:15.675412000 UTC][3146873200][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:15.675 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:15.675785000 UTC][3146873200][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:15.676 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:15.676135000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:15.676 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:15.676554000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:15.676 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:15.676655000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:15.677 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:15.676983000 UTC][3137513840][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:15.677 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:15.677161000 UTC][3137513840][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: false [AUTOMATION]
07-27 06:44:18.131 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:18.131683000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:18.131 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:18.131789000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:18.132 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:18.132238000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:18.133 29697 30798 E test_spatial_anchors: E::[2019.7.26 22:44:18.133139000 UTC][3155163504][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:18.133 29697 30798 E test_spatial_anchors: E::[2019.7.26 22:44:18.133342000 UTC][3155163504][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:18.209 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:18.209858000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '7a2c3dc0b6b9b741ba67cc544eabb32f' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:18.210 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:18.210491000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:18.210 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:18.210596000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:18.210 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:18.210659000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:18.212 29697 30797 E test_spatial_anchors: E::[2019.7.26 22:44:18.212163000 UTC][3156199792][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:18.212 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:18.212493000 UTC][3148945776][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:18.214 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:18.214030000 UTC][3148945776][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:18.214 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:18.214472000 UTC][3148945776][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:18.214 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:18.214595000 UTC][3148945776][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:18.258 29697 30779 E test_spatial_anchors: E::[2019.7.26 22:44:18.258716000 UTC][3205552496][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:18.259 29697 30779 E test_spatial_anchors: E::[2019.7.26 22:44:18.259064000 UTC][3205552496][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:18.266 29697 30779 E test_spatial_anchors: E::[2019.7.26 22:44:18.266230000 UTC][3205552496][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[815141]
07-27 06:44:18.266 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:18.266407000 UTC][3146873200][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:18.266 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:18.266500000 UTC][3146873200][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:20.187 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:20.171018000 UTC][3153090928][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:20.187 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:20.187705000 UTC][3153090928][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:20.220 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:20.219951000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:20.220 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:20.220094000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:20.220 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:20.220783000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:20.222 29697 30813 E test_spatial_anchors: E::[2019.7.26 22:44:20.221716000 UTC][3139586416][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:20.222 29697 30813 E test_spatial_anchors: E::[2019.7.26 22:44:20.222108000 UTC][3139586416][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:20.288 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:20.288554000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'f1a40c947d4377418e89bb14cf70f8dc' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:20.289 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:20.288994000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:20.289 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:20.289041000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:20.289 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:20.289081000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:20.289 29697 30781 E test_spatial_anchors: E::[2019.7.26 22:44:20.289558000 UTC][3171744112][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:20.289 29697 30781 E test_spatial_anchors: E::[2019.7.26 22:44:20.289744000 UTC][3171744112][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:20.783 29697 30791 E test_spatial_anchors: E::[2019.7.26 22:44:20.783082000 UTC][3162417520][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:20.783 29697 30791 E test_spatial_anchors: E::[2019.7.26 22:44:20.783586000 UTC][3162417520][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:20.783 29697 30791 E test_spatial_anchors: E::[2019.7.26 22:44:20.783830000 UTC][3162417520][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:20.785 29697 30789 E test_spatial_anchors: E::[2019.7.26 22:44:20.784934000 UTC][3164490096][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:20.785 29697 30789 E test_spatial_anchors: E::[2019.7.26 22:44:20.785517000 UTC][3164490096][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:20.785 29697 30789 E test_spatial_anchors: E::[2019.7.26 22:44:20.785621000 UTC][3164490096][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:20.786 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:20.786385000 UTC][3149982064][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:20.786 29697 30810 E test_spatial_anchors: E::[2019.7.26 22:44:20.786281000 UTC][3142695280][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: true [AUTOMATION]
07-27 06:44:20.788 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:20.788012000 UTC][3149982064][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:20.788 29697 30807 E test_spatial_anchors: E::[2019.7.26 22:44:20.788494000 UTC][3145836912][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:20.788 29697 30807 E test_spatial_anchors: E::[2019.7.26 22:44:20.788660000 UTC][3145836912][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:20.835 29697 30813 E test_spatial_anchors: E::[2019.7.26 22:44:20.834931000 UTC][3139586416][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:20.835 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:20.835332000 UTC][3137513840][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:20.844 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:20.844621000 UTC][3137513840][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[840626]
07-27 06:44:20.844 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:20.844815000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:20.844 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:20.844884000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:21.071 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:21.71599000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:21.071 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:21.71712000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:21.072 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:21.72058000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:21.147 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:21.147083000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'b4ef5a6e51b7884fb41b3d2ddc8d4cbc' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:21.147 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:21.147594000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:21.147 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:21.147663000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:21.147 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:21.147723000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:21.148 29697 30791 E test_spatial_anchors: E::[2019.7.26 22:44:21.148223000 UTC][3162417520][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:21.148 29697 30791 E test_spatial_anchors: E::[2019.7.26 22:44:21.148391000 UTC][3162417520][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:23.088 29697 30798 E test_spatial_anchors: E::[2019.7.26 22:44:23.88106000 UTC][3155163504][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:23.088 29697 30798 E test_spatial_anchors: E::[2019.7.26 22:44:23.88204000 UTC][3155163504][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:23.175 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:23.175674000 UTC][3166562672][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:23.176 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:23.176221000 UTC][3166562672][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:23.176 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:23.176483000 UTC][3166562672][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:23.177 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:23.177542000 UTC][3148945776][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:23.177 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:23.177679000 UTC][3148945776][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:23.177 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:23.177809000 UTC][3148945776][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:23.178 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:23.178181000 UTC][3148945776][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: true [AUTOMATION]
07-27 06:44:23.178 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:23.178228000 UTC][3170707824][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:23.180 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:23.180007000 UTC][3170707824][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:23.180 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:23.180453000 UTC][3170707824][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:23.180 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:23.180572000 UTC][3170707824][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:23.248 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:23.248805000 UTC][3170707824][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:23.249 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:23.249652000 UTC][3170707824][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:23.249 29697 30790 E test_spatial_anchors: E::[2019.7.26 22:44:23.249922000 UTC][3163453808][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:23.250 29697 30790 E test_spatial_anchors: E::[2019.7.26 22:44:23.250006000 UTC][3163453808][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:23.262 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:23.262189000 UTC][3170707824][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[866111]
07-27 06:44:23.262 29697 30794 E test_spatial_anchors: E::[2019.7.26 22:44:23.262491000 UTC][3159308656][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:23.262 29697 30794 E test_spatial_anchors: E::[2019.7.26 22:44:23.262847000 UTC][3159308656][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:25.780 29697 30792 E test_spatial_anchors: E::[2019.7.26 22:44:25.780245000 UTC][3161381232][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:25.780 29697 30792 E test_spatial_anchors: E::[2019.7.26 22:44:25.780849000 UTC][3161381232][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:25.781 29697 30792 E test_spatial_anchors: E::[2019.7.26 22:44:25.781232000 UTC][3161381232][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:25.781 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:25.781867000 UTC][3149982064][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:25.782 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:25.782011000 UTC][3149982064][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:25.782 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:25.782128000 UTC][3149982064][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:25.782 29697 30802 E test_spatial_anchors: E::[2019.7.26 22:44:25.782482000 UTC][3151018352][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:25.782 29697 30802 E test_spatial_anchors: E::[2019.7.26 22:44:25.782627000 UTC][3151018352][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: false [AUTOMATION]
07-27 06:44:30.365 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:30.365406000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:30.365 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:30.365508000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:30.365 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:30.365844000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:30.366 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:30.366634000 UTC][3165526384][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:30.366 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:30.366711000 UTC][3165526384][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:30.435 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.435136000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '0e3b3862b117f140bae0ec099c9c1c87' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:30.436 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.436032000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:30.436 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.436110000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:30.436 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.436172000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:30.436 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:30.436878000 UTC][3166562672][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:30.437 29697 30797 E test_spatial_anchors: E::[2019.7.26 22:44:30.437184000 UTC][3156199792][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:30.438 29697 30797 E test_spatial_anchors: E::[2019.7.26 22:44:30.438953000 UTC][3156199792][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:30.439 29697 30779 E test_spatial_anchors: E::[2019.7.26 22:44:30.439460000 UTC][3205552496][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:30.439 29697 30779 E test_spatial_anchors: E::[2019.7.26 22:44:30.439578000 UTC][3205552496][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:30.485 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:30.485110000 UTC][3146873200][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:30.485 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:30.485466000 UTC][3146873200][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:30.497 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:30.497377000 UTC][3146873200][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[891596]
07-27 06:44:30.499 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:30.499620000 UTC][3146873200][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:30.499 29697 30806 E test_spatial_anchors: E::[2019.7.26 22:44:30.499756000 UTC][3146873200][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:30.884 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:30.884162000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:30.884 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:30.884308000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:30.886 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:30.886750000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:30.940 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.940102000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'faa06236a55bb74aa6f47d367bd828ce' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:30.940 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.940518000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:30.940 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.940585000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:30.940 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:30.940632000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:30.952 29697 30789 E test_spatial_anchors: E::[2019.7.26 22:44:30.952221000 UTC][3164490096][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:30.952 29697 30789 E test_spatial_anchors: E::[2019.7.26 22:44:30.952302000 UTC][3164490096][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:31.204 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.204828000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:31.204 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.204948000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:31.205 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.205343000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:31.277 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.277523000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '686137569c1de340be7df7141eae6bb8' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:31.278 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.278094000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:31.278 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.278166000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:31.278 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.278226000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:31.279 29697 30795 E test_spatial_anchors: E::[2019.7.26 22:44:31.279270000 UTC][3158272368][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:31.279 29697 30795 E test_spatial_anchors: E::[2019.7.26 22:44:31.279514000 UTC][3158272368][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:31.469 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.469871000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:31.470 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.469983000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:31.477 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.477233000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:31.550 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.550743000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '777bc00a8f34cb48bacdd6c10e19e8dd' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:31.551 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.551665000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:31.551 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.551757000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:31.551 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.551825000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:31.552 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:31.552480000 UTC][3153090928][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:31.552 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:31.552559000 UTC][3153090928][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:31.892 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.892380000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:31.892 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.892509000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:31.907 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:31.907148000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:31.984 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.984187000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '928721e858229847b6a3cc64418e6b70' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:31.985 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.985064000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:31.985 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.985146000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:31.985 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:31.985214000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:31.986 29697 30817 E test_spatial_anchors: E::[2019.7.26 22:44:31.986137000 UTC][3135441264][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:31.986 29697 30817 E test_spatial_anchors: E::[2019.7.26 22:44:31.986396000 UTC][3135441264][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:32.220 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:32.220233000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:32.220 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:32.220372000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:32.220 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:32.220764000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:32.312 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:32.312445000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'f8957a140f2a6e4385bd72e8969c3be1' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:32.313 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:32.313035000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:32.313 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:32.313110000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:32.313 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:32.313176000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:32.313 29697 30781 E test_spatial_anchors: E::[2019.7.26 22:44:32.313755000 UTC][3171744112][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:32.313 29697 30781 E test_spatial_anchors: E::[2019.7.26 22:44:32.313826000 UTC][3171744112][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:32.985 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:32.985341000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:32.985 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:32.985595000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:32.986 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:32.986079000 UTC][3137513840][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:32.986 29697 30816 E test_spatial_anchors: E::[2019.7.26 22:44:32.986426000 UTC][3136477552][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:32.986 29697 30816 E test_spatial_anchors: E::[2019.7.26 22:44:32.986567000 UTC][3136477552][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:32.986 29697 30816 E test_spatial_anchors: E::[2019.7.26 22:44:32.986676000 UTC][3136477552][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:32.987 29697 30813 E test_spatial_anchors: E::[2019.7.26 22:44:32.987142000 UTC][3139586416][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: true [AUTOMATION]
07-27 06:44:32.987 29697 30794 E test_spatial_anchors: E::[2019.7.26 22:44:32.987214000 UTC][3159308656][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:32.989 29697 30794 E test_spatial_anchors: E::[2019.7.26 22:44:32.989820000 UTC][3159308656][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:32.990 29697 30799 E test_spatial_anchors: E::[2019.7.26 22:44:32.990321000 UTC][3154127216][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:32.990 29697 30799 E test_spatial_anchors: E::[2019.7.26 22:44:32.990731000 UTC][3154127216][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:33.056 29697 30817 E test_spatial_anchors: E::[2019.7.26 22:44:33.56403000 UTC][3135441264][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:33.057 29697 30780 E test_spatial_anchors: E::[2019.7.26 22:44:33.56709000 UTC][3200514416][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:33.067 29697 30780 E test_spatial_anchors: E::[2019.7.26 22:44:33.67668000 UTC][3200514416][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[1019021]
07-27 06:44:33.067 29697 30796 E test_spatial_anchors: E::[2019.7.26 22:44:33.67922000 UTC][3157236080][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:33.068 29697 30796 E test_spatial_anchors: E::[2019.7.26 22:44:33.68005000 UTC][3157236080][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:34.224 29697 30808 E test_spatial_anchors: E::[2019.7.26 22:44:34.224211000 UTC][3143731568][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:34.224 29697 30808 E test_spatial_anchors: E::[2019.7.26 22:44:34.224583000 UTC][3143731568][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:35.938 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:35.938671000 UTC][3170707824][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:35.938 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:35.938908000 UTC][3170707824][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:35.939 29697 30782 E test_spatial_anchors: E::[2019.7.26 22:44:35.939152000 UTC][3170707824][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:35.940 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:35.940863000 UTC][3148945776][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:35.941 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:35.941058000 UTC][3148945776][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:35.941 29697 30804 E test_spatial_anchors: E::[2019.7.26 22:44:35.941176000 UTC][3148945776][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:35.942 29697 30805 E test_spatial_anchors: E::[2019.7.26 22:44:35.941829000 UTC][3147909488][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:35.942 29697 30805 E test_spatial_anchors: E::[2019.7.26 22:44:35.942355000 UTC][3147909488][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: false [AUTOMATION]
07-27 06:44:38.285 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.285261000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:38.285 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.285405000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:38.286 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.286068000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:38.287 29697 30796 E test_spatial_anchors: E::[2019.7.26 22:44:38.287143000 UTC][3157236080][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:38.287 29697 30796 E test_spatial_anchors: E::[2019.7.26 22:44:38.287283000 UTC][3157236080][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:38.363 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.363299000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'd119b9e59753aa4191556785359c884f' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:38.364 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.363964000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:38.364 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.364067000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:38.364 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.364137000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:38.364 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:38.364777000 UTC][3137513840][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:38.365 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:38.365017000 UTC][3137513840][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:38.366 29697 30815 E test_spatial_anchors: E::[2019.7.26 22:44:38.366531000 UTC][3137513840][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:38.367 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:38.367056000 UTC][3165526384][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:38.367 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:38.367220000 UTC][3165526384][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:38.426 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:38.426849000 UTC][3165526384][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:38.427 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:38.427289000 UTC][3165526384][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:38.436 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:38.436636000 UTC][3165526384][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[1044506]
07-27 06:44:38.436 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:38.436823000 UTC][3165526384][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:38.436 29697 30788 E test_spatial_anchors: E::[2019.7.26 22:44:38.436895000 UTC][3165526384][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:38.486 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.486188000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:38.486 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.486300000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:38.486 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.486614000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:38.557 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.557561000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'be4abdbacb14c942947ee5d69af9f7c1' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:38.558 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.558344000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:38.558 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.558434000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:38.558 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.558503000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:38.559 29697 30812 E test_spatial_anchors: E::[2019.7.26 22:44:38.559248000 UTC][3140622704][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:38.559 29697 30812 E test_spatial_anchors: E::[2019.7.26 22:44:38.559542000 UTC][3140622704][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:38.754 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.754202000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:38.754 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.754345000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:38.754 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:38.754694000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:38.823 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.823682000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'cd37dc68297e5e4091022ef0ce3897cc' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:38.824 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.824207000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Query Added to Blob Builder [AUTOMATION]
07-27 06:44:38.824 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.824270000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:38.824 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:38.824322000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: a). Notifying listeners now.
07-27 06:44:38.824 29697 30805 E test_spatial_anchors: E::[2019.7.26 22:44:38.824948000 UTC][3147909488][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:38.825 29697 30805 E test_spatial_anchors: E::[2019.7.26 22:44:38.825014000 UTC][3147909488][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:40.766 29697 30813 E test_spatial_anchors: E::[2019.7.26 22:44:40.766182000 UTC][3139586416][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 1
07-27 06:44:40.766 29697 30813 E test_spatial_anchors: E::[2019.7.26 22:44:40.766283000 UTC][3139586416][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:41.804 29697 30794 E test_spatial_anchors: E::[2019.7.26 22:44:41.804763000 UTC][3159308656][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:41.805 29697 30794 E test_spatial_anchors: E::[2019.7.26 22:44:41.805226000 UTC][3159308656][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:41.805 29697 30794 E test_spatial_anchors: E::[2019.7.26 22:44:41.805513000 UTC][3159308656][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:41.806 29697 30814 E test_spatial_anchors: E::[2019.7.26 22:44:41.805959000 UTC][3138550128][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:41.806 29697 30814 E test_spatial_anchors: E::[2019.7.26 22:44:41.806137000 UTC][3138550128][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:41.806 29697 30814 E test_spatial_anchors: E::[2019.7.26 22:44:41.806285000 UTC][3138550128][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:41.806 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:41.806876000 UTC][3153090928][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: true [AUTOMATION]
07-27 06:44:41.807 29697 30797 E test_spatial_anchors: E::[2019.7.26 22:44:41.807097000 UTC][3156199792][my_session.cpp:439] MS debug message: RunDiscoverAsync - Running a Discover iteration with 1 DiscoverOptions
07-27 06:44:41.809 29697 30797 E test_spatial_anchors: E::[2019.7.26 22:44:41.809478000 UTC][3156199792][my_session.cpp:439] MS debug message: RunDiscoverAsync - Snapshot - Counts of Cached NeighborhoodAnchors: 1. Cached SpatialAnchors: 1.
07-27 06:44:41.810 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:41.810026000 UTC][3207625072][my_session.cpp:439] MS debug message: EnsureQueryRootKnownPosesAndBlobForStreamingQuery - Reusing cached query root id[1]
07-27 06:44:41.810 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:41.810220000 UTC][3207625072][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::CreateAtCurrentLocation] Creating a neighborhood anchor.
07-27 06:44:41.875 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:41.875808000 UTC][3207625072][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::GetQueryNeighborhoodDataAsync] IsNeighborhoodDataAvailable: 1, Feedback: 0.
07-27 06:44:41.876 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:41.876331000 UTC][3207625072][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - blob filter match naid[17293e4c-13de-4de5-9e5f-fdfa0b428475]
07-27 06:44:41.876 29697 30799 E test_spatial_anchors: E::[2019.7.26 22:44:41.876824000 UTC][3154127216][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:41.876 29697 30799 E test_spatial_anchors: E::[2019.7.26 22:44:41.876902000 UTC][3154127216][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:41.879 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:41.879688000 UTC][3207625072][my_session.cpp:439] MS debug message: RunStreamingVisualPoseQueryForNotYetLocalizedNeighborhoodAnchorIdsAsync - AddKeyFrameBlobQuery of bytes[1095476]
07-27 06:44:41.879 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:41.879956000 UTC][3207625072][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:41.880 29697 30777 E test_spatial_anchors: E::[2019.7.26 22:44:41.880035000 UTC][3207625072][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:44.891 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:44.891752000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:44.891 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:44.891865000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:44.892 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:44.892548000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:44.893 29697 30778 E test_spatial_anchors: E::[2019.7.26 22:44:44.893347000 UTC][3206588784][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:44.893 29697 30778 E test_spatial_anchors: E::[2019.7.26 22:44:44.893456000 UTC][3206588784][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:44.951 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:44.951051000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '0a7f52325e5f314c85c5eea8c7821da6' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:44.951 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:44.951676000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:44.951 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:44.951762000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: 2). Notifying listeners now.
07-27 06:44:44.952 29697 30792 E test_spatial_anchors: E::[2019.7.26 22:44:44.952395000 UTC][3161381232][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:44.952 29697 30792 E test_spatial_anchors: E::[2019.7.26 22:44:44.952476000 UTC][3161381232][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:45.257 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.257814000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:45.258 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.257970000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:45.258 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.258679000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:45.339 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:45.339200000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '1697c9ca4eface4f95703d6a9ae5cac7' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:45.339 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:45.339879000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:45.340 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:45.339971000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: 2). Notifying listeners now.
07-27 06:44:45.340 29697 30816 E test_spatial_anchors: E::[2019.7.26 22:44:45.340811000 UTC][3136477552][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:45.340 29697 30816 E test_spatial_anchors: E::[2019.7.26 22:44:45.340919000 UTC][3136477552][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because locate is already underway
07-27 06:44:45.355 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:45.355563000 UTC][3153090928][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:45.355 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:45.355795000 UTC][3153090928][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingPoseEvent - naid[17293e4c-13de-4de5-9e5f-fdfa0b428475], wasRelocalized[0].
07-27 06:44:45.356 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:45.356047000 UTC][3153090928][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - Awaiting more stream events
07-27 06:44:45.356 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:45.356177000 UTC][3153090928][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - entry
07-27 06:44:45.356 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:45.356254000 UTC][3153090928][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEvents - Received KeyFrameProcessingComplete event.
07-27 06:44:45.356 29697 30800 E test_spatial_anchors: E::[2019.7.26 22:44:45.356321000 UTC][3153090928][my_session.cpp:439] MS debug message: ProcessPoseQueryStreamingEventsUntilCompletion - DiscoverComplete successfully.
07-27 06:44:45.356 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:45.356645000 UTC][3149982064][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:45.356 29697 30803 E test_spatial_anchors: E::[2019.7.26 22:44:45.356732000 UTC][3149982064][my_session.cpp:439] MS debug message: Watcher 1 finished operation, starting another: false [AUTOMATION]
07-27 06:44:45.588 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.588186000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:45.588 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.588329000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:45.597 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.597144000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:45.657 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:45.657084000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate 'b1c0359ec14fda48a6ee106a83858076' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:45.657 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:45.657765000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:45.657 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:45.657851000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: 2). Notifying listeners now.
07-27 06:44:45.658 29697 30780 E test_spatial_anchors: E::[2019.7.26 22:44:45.658477000 UTC][3200514416][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:45.658 29697 30780 E test_spatial_anchors: E::[2019.7.26 22:44:45.658554000 UTC][3200514416][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request
07-27 06:44:45.993 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.993858000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::IsCandidateKeyFrameRedundant] No, so we will enqueue this frame for further processing...
07-27 06:44:45.994 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.994028000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] No pixel data in current frame, so making a request for that in subsequent frame.
07-27 06:44:45.994 29697 29732 E test_spatial_anchors: E::[2019.7.26 22:44:45.994266000 UTC][3537369456][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::OnArFrameAvailable] Queueing the frame for keyframe creation - Queue-count: 1, running?=1 at-work?=0
07-27 06:44:46.028 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:46.28696000 UTC][3208661360][my_session.cpp:439] MS debug message: [MobileNeighborhoodManager::SelectAndProcessNextAvailableMobileArFrame] Candidate '86138253a04b2a49b823fc683c2bb7be' was added to the map, bumping out '00000000000000000000000000000000'.
07-27 06:44:46.029 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:46.29164000 UTC][3208661360][my_session.cpp:439] MS debug message: Key-Frame for Create Added to Blob Builder [AUTOMATION]
07-27 06:44:46.029 29697 30776 E test_spatial_anchors: E::[2019.7.26 22:44:46.29235000 UTC][3208661360][my_session.cpp:439] MS debug message: [SelectAndProcessNextAvailableMobileArFrame] Create or query sufficiency status hash changed (notificationMask: 2). Notifying listeners now.
07-27 06:44:46.029 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:46.29650000 UTC][3166562672][my_session.cpp:439] MS debug message: [HandleFeedbackUpdated] Progress for locate was made since last request: 0
07-27 06:44:46.029 29697 30787 E test_spatial_anchors: E::[2019.7.26 22:44:46.29708000 UTC][3166562672][my_session.cpp:439] MS debug message: [ConsiderFiringLocate] Will not locate because no progress has been made since last request

HoloLens runtime issue

I'm trying to run the AzureSpatialAnchorsBasicDemo Unity scene on the HoloLens, however I seem to be getting some runtime issues. I've added a filtered version of the VS output below, only reflecting the potential error causes or the application state changes.

I'm using Unity 2018.3.13f1 and Visual Studio 17.

Would anyone here have a clue of the problem at hand?

(Filename: C:\buildslave\unity\build\Runtime/Scripting/CommonScriptingClasses.cpp Line: 143)
...
If your machine has multiple graphics adapters, Unity may have created a WindowContext on the wrong adapter. If you experience a black screen when playing, please restart the Editor. 
(Filename: C:\buildslave\unity\build\Runtime/VR/VRDevice.cpp Line: 319)
...
The referenced script on this Behaviour (Game Object 'First Person Camera') is missing!
The referenced script on this Behaviour (Game Object 'ARKitCamera') is missing!
The referenced script on this Behaviour (Game Object 'ARKitCamera') is missing!
The referenced script on this Behaviour (Game Object 'ARCore Device') is missing!
The referenced script on this Behaviour (Game Object 'ARKitCamera') is missing!
...
Azure Spatial Anchors Demo Script Start
Azure Spatial Anchors Demo script started
...
error:14090086:lib(20):func(144):reason(134)
error:14090086:lib(20):func(144):reason(134)
error:14090086:lib(20):func(144):reason(134)
error:14090086:lib(20):func(144):reason(134)
...
State from DemoStepCreateSession to DemoStepConfigSession
State from DemoStepConfigSession to DemoStepStartSession
...
AzureSpatialAnchors - Session Identifier: 8e...<anonymized>...c93 [AUTOMATION]
...
AzureSpatialAnchors - Configured AnchorServiceUrl: https://manage.sa.mixedreality.azure.com/
AzureSpatialAnchors - Configured AuthServiceUrl: https://sts.mixedreality.azure.com/
AzureSpatialAnchors - Configured AccountId: 32...<anonymized>...5c
AzureSpatialAnchors - Configured DeviceOsVersion: 10.0.17134.111
AzureSpatialAnchors - Configured SdkPackageType: 
AzureSpatialAnchors - Configured SdkVersion: 1.1.0
AzureSpatialAnchors - Configured ArPlatformVersion: 10.0.17134.111
AzureSpatialAnchors - Configured MiddlewareVersions: 
...
Exception thrown: 'System.InvalidOperationException' in Assembly-CSharp.dll
'HelloAR U3D.exe' (CoreCLR: CoreCLR_UWP_Domain): 
Exception thrown: 'System.IO.FileLoadException' in System.Private.CoreLib.ni.dll
Exception thrown: 'System.IO.FileLoadException' in System.Private.CoreLib.ni.dll
InvalidOperationException: Unknown exception causing failure. Request CV: . Response CV: .
   at Microsoft.Azure.SpatialAnchors.NativeLibraryHelpers.CheckStatus(IntPtr handle, status value)
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsDemoWrapper.set_EnableProcessing(Boolean value)
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsBasicDemoScript.AdvanceDemo()
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.DemoScriptBase.<OnSelectInteraction>b__29_0()
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.DemoScriptBase.Update()
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsBasicDemoScript.Update()
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsBasicDemoScript.$Invoke18Update(Int64 instance, Int64* args)
   at UnityEngine.Internal.$MethodUtility.InvokeMethod(Int64 instance, Int64* args, IntPtr method) 
(Filename: <Unknown> Line: 0)

Unity Asset Package or Usage in my Own Project

I would really like to see Azure Spatial Anchors available as a stand alone Unity Asset Package. Or at least I would like to see some clear instructions on how to add it to my own project.

Right now it seems the only way to locate the files I need to use ASA in my own Unity projects is by cloning this sample repository. But looking at the sample project it's a little confusing to me which files are needed by ASA itself vs. which ones are only needed for this sample project.

For example, it appears the native API wrapper logic is found in the file AzureSpatialAnchorsDemoWrapper.cs which is located in the Examples folder. But I wouldn't have known that without searching for it. Since most of the code seems to be put in Examples, I don't know which parts I need for my own projects vs. which parts are just for this demo.

Another example is that there seem to be two different sets of plugin folders:

  • \Plugins\Android

and

  • AzureSpatialAnchors\Plugins\Common
  • AzureSpatialAnchors\Plugins\Editor
  • AzureSpatialAnchors\Plugins\HoloLens
  • AzureSpatialAnchors\Plugins\iOS

The one in the root contains a .gradle file which appears to add a maven reference (among other things). Could this be merged into the other AzureSpatialAnchors\Plugins folder, or does it need to be in the root?

Any guidance on gathering just the parts I need would be greatly appreciated. And I'd love to see an actual Unity Asset Package.

Thanks!

Sharing in Unity locks up at camera step on iPad

Moving issue from docs since this is a sample application issue: MicrosoftDocs/azure-docs#33058

Environment: MacBook Pro Mojave 10.14.5; Unity 2019.1.5f1; Visual Studio 2019 for Mac; .NET 2.2.107; Xcode 10.2.1; Build goes fine in unity. cocoa pods installed successfully in App directory. Opened xcworkspace in App directory from terminal. App deploys successfully to iPad and starts to run. Menu functional. When I select the button to allow access to the camera, the application locks. Recurrent message in Xcode window monitoring the running app:(Filename: currently not available on il2cpp Line: -1)

NullReferenceException: Object reference not set to an instance of an object.
at UnityEngine.XR.iOS.UnityARVideo.OnPreRender () [0x00000] in <00000000000000000000000000000000>:0

Android build issue in Unity

When I use the AzureSpatialAnchors.unitypackage the following section in mainTemplate.gradle gives me a build error.

maven {
  url 'https://microsoft.pkgs.visualstudio.com/_packaging/Analog.SpatialServices/maven/v1'
    credentials {
      username "VSTS"
      // Put the access token VSTS provides in your gradle.properties as "azureArtifactsGradleAccessToken=<AccessToken>"
      password System.getenv("AZURE_ARTIFACTS_ENV_ACCESS_TOKEN") ?: "${azureArtifactsGradleAccessToken}"
    }
}

If I remove it, the build will complete successfully. I also noticed that this section is absent in the source from the repo.

HoloLens exception when connecting to Azure

Hey,

I got the basic and shared examples up and running on iOS and Android using Unity, as well as the web app published, without any problems. I can also build to HoloLens (also with Unity) and it starts up fine. However whenever I try to connect to Azure it seems not to succesfully get an access token back (also debug log "AzureSpatialAnchors - Configured AuthenticationToken: " states it as empty). I get the following exception:

InvalidOperationException: Unknown exception causing failure. Request CV: . Response CV: . at Microsoft.Azure.SpatialAnchors.NativeLibraryHelpers.CheckStatus(IntPtr handle, status value) at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsDemoWrapper.set_EnableProcessing(Boolean value) at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsSharedAnchorDemoScript.AdvanceCreateFlowDemo() at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsSharedAnchorDemoScript.AdvanceDemo() at Microsoft.Azure.SpatialAnchors.Unity.Samples.DemoScriptBase.<OnSelectInteraction>b__27_0() at Microsoft.Azure.SpatialAnchors.Unity.Samples.DemoScriptBase.Update() at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsSharedAnchorDemoScript.Update() at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsSharedAnchorDemoScript.$Invoke23(Int64 instance, Int64* args) at UnityEngine.Internal.$MethodUtility.InvokeMethod(Int64 instance, Int64* args, IntPtr method)

I use the same azure resource Id, key (and for the shared example same url) as in the iOS and Android builds, where they work without issues. Any ideas what could be causing this? The Hololens is connected and can access the web app url fine via Edge. Neither basic scene nor shared one work, after the exception I can still continue to place the cube, but I don't think it saves it to azure in any ways. It then gets stuck at "Move your device to capture more environment data: 0%".

Scanning not working in Hololens

Hi there, I tried to run the azure spatial anchors unity project with scene 'Local shared Demo' in Hololens v1.

When I try to create an anchor, the app after couple of stages reaches the scanning stage, it indicates as scanning but the percentage is always '0%' It never progress further. I actually tried to move other places etc but no use. Surprisingly, we built the unity project for iOS, it is working fine (including the scanning and retrieving). However, Hololens v1 is our first priority. Please help

Device used: Hololens v1
Unity version: 2018.3.14f
Visual Studio: 2017 (community edition)

Regards
Nalla

App property not available in shared anchor demo

When trying to run the IOS sample program, it runs successfully. I set the app property for the anchor and fetched the anchor from azure, the property is retrieved properly.

However, when I try to fetch the nearby anchors, the anchor is fetched but the app property is empty. The property that was set is not available.

Unity Android is not working! how to create AuthenticationToken?

when I CreateAnchorAsync(cloudAnchor), error occurred;

maybe the AuthenticationToken or AccessToken is error, but I do not know how to create AuthenticationToken or AccessToken, and the Document do not show me hou to do that!

2019-03-01 11:17:09.038 3602-3659/com.google.ar.core.examples.unity.helloar E/Unity: InvalidOperationException: . Request CV: . Response CV: .
at Microsoft.Azure.SpatialAnchors.NativeLibraryHelpers.CheckStatus (System.IntPtr handle, Microsoft.Azure.SpatialAnchors.status value) [0x00109] in /Users/zhakang/unity/azure-spatial-anchors-samples/Unity/Assets/AzureSpatialAnchorsPlugin/Plugins/Common/AzureSpatialAnchorsBridge.cs:5381
at Microsoft.Azure.SpatialAnchors.CloudSpatialAnchorSession+<>c__DisplayClass71_0.b__0 () [0x00001] in /Users/zhakang/unity/azure-spatial-anchors-samples/Unity/Assets/AzureSpatialAnchorsPlugin/Plugins/Common/AzureSpatialAnchorsBridge.cs:7162
at System.Threading.Tasks.Task.InnerInvoke () [0x0000f] in :0
at System.Threading.Tasks.Task.Execute () [0x00010] in :0
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in :0
at System.Runtime.

VisualInformation Locate Strategy Errors

First I'd like to say that I am really enjoying working with this platform so thanks much.
(Android, Java, Google Pixel 3XL)

There seems to be a significant positioning error in the platform where "VisuaIinformatiom" is implemented as a Locate Strategy. The anchor is located and rendered 5 or 6 meters away from the target. (VisualInformation works perfectly the first time)

Basically, I want to be able to "Confirm" an anchor position at a later date using VisualInformation over positional relationships which requires restarting the session to prevent AlreadyTracked AnchorLocatedEvent firing. ( Seems like you can only confirm the "Actual" location of an anchor only once.

Any assistance would be highly appreciated.

Steps to reproduce:

  1. Locate an anchor using AnyStrategy from a list of Identifiers ( render it )
  2. Restart the session and approach the target anchor as a single identifier as VisualInformation from a different location.
  3. Repeat 2.... After 2 or 3 attempts it will render at an incorrect position and the error will be magnified.

Unable to use RecommendedForCreateProgress when creating multiple anchors

On Unity Android, I'm trying to create multiple anchors in same session but the value of RecommendedForCreateProgress does not reset after I create one;
So when I call CreateAnchorAsync, I have to wait and collect data near my created anchor but without any clue or status; I have also noticed that in this case my anchor is not create where I place it.

What is the issue with IL2CPP on HoloLens?

In your documentation, it says

There is an additional issue on the il2cpp scripting backend case that renders the library unusable in this release.

We need to use IL2CPP for this project (Unity has deprecated the other option and MRTK requires IL2CPP). Can you provide more detail about what is the problem that makes this library unusable? This will help us know how we should move forward.

Thank you for your help! We can't wait to use this new technology.

App not launching (Hololens)

Hi there,

I tried to launch the 'local shared demo' scene from the Unity via VIsual studio 2017 in HoloLens v1.
The app is not at all launching. I made various attempts and sometimes it launches (with some issues like button not visible etc) but mostly the app is blank. Even 'made with Unity' too is not appearing, the app is just blank.
Please help. I have attached the debug log of Visual studio 2017

Unity version: 2018.3.
Visual studio community 2017

log.txt

Custom application crashes when creating a CloudSpatialAnchorSession object

Hi!

I've been playing with the android sample of the sample project and decided to build an app copying the code from the sample. However, the android device that runs the original sample keeps crashing on my custom project when trying to create a new CloudSpatialAnchorSession object.

The error looks like this:

2019-05-15 17:04:46.195 28901-28901/com.azurelib.azurecloudanchorstest E/loudanchorstes: No implementation found for com.microsoft.azure.spatialanchors.status com.microsoft.azure.spatialanchors.NativeLibrary.ssc_cloud_spatial_anchor_session_create(com.microsoft.azure.spatialanchors.Out) (tried Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1create and Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1create__Lcom_microsoft_azure_spatialanchors_Out_2)
2019-05-15 17:04:46.229 28901-28901/com.azurelib.azurecloudanchorstest E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.azurelib.azurecloudanchorstest, PID: 28901
java.lang.IllegalStateException: Could not execute method for android:onClick
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:389)
at android.view.View.performClick(View.java:6669)
at android.view.View.performClickInternal(View.java:6638)
at android.view.View.access$3100(View.java:789)
at android.view.View$PerformClick.run(View.java:26145)
at android.os.Handler.handleCallback(Handler.java:873)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:6863)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:537)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
Caused by: java.lang.reflect.InvocationTargetException
at java.lang.reflect.Method.invoke(Native Method)
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:384)
at android.view.View.performClick(View.java:6669) 
at android.view.View.performClickInternal(View.java:6638) 
at android.view.View.access$3100(View.java:789) 
at android.view.View$PerformClick.run(View.java:26145) 
at android.os.Handler.handleCallback(Handler.java:873) 
at android.os.Handler.dispatchMessage(Handler.java:99) 
at android.os.Looper.loop(Looper.java:193) 
at android.app.ActivityThread.main(ActivityThread.java:6863) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:537) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858) 
Caused by: java.lang.UnsatisfiedLinkError: No implementation found for com.microsoft.azure.spatialanchors.status com.microsoft.azure.spatialanchors.NativeLibrary.ssc_cloud_spatial_anchor_session_create(com.microsoft.azure.spatialanchors.Out) (tried Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1create and Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1create__Lcom_microsoft_azure_spatialanchors_Out_2)
at com.microsoft.azure.spatialanchors.NativeLibrary.ssc_cloud_spatial_anchor_session_create(Native Method)
at com.microsoft.azure.spatialanchors.CloudSpatialAnchorSession.(CloudSpatialAnchorSession.java:50)
at com.azurelib.azurecloudanchorstest.AzureSpatialAnchorsManager.(AzureSpatialAnchorsManager.java:39)
at com.azurelib.azurecloudanchorstest.SharedActivity.createButtonClicked(SharedActivity.java:73)
at java.lang.reflect.Method.invoke(Native Method) 
at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:384) 
at android.view.View.performClick(View.java:6669) 
at android.view.View.performClickInternal(View.java:6638) 
at android.view.View.access$3100(View.java:789) 
at android.view.View$PerformClick.run(View.java:26145) 
at android.os.Handler.handleCallback(Handler.java:873) 
at android.os.Handler.dispatchMessage(Handler.java:99) 
at android.os.Looper.loop(Looper.java:193) 
at android.app.ActivityThread.main(ActivityThread.java:6863) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:537) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858) 
2019-05-15 17:04:52.158 28901-28915/com.azurelib.azurecloudanchorstest E/loudanchorstes: No implementation found for com.microsoft.azure.spatialanchors.status com.microsoft.azure.spatialanchors.NativeLibrary.ssc_cloud_spatial_anchor_session_release(long) (tried Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1release and Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1release__J)
2019-05-15 17:04:52.158 28901-28915/com.azurelib.azurecloudanchorstest E/System: Uncaught exception thrown by finalizer
2019-05-15 17:04:52.169 28901-28915/com.azurelib.azurecloudanchorstest E/System: java.lang.UnsatisfiedLinkError: No implementation found for com.microsoft.azure.spatialanchors.status com.microsoft.azure.spatialanchors.NativeLibrary.ssc_cloud_spatial_anchor_session_release(long) (tried Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1release and Java_com_microsoft_azure_spatialanchors_NativeLibrary_ssc_1cloud_1spatial_1anchor_1session_1release__J)
at com.microsoft.azure.spatialanchors.NativeLibrary.ssc_cloud_spatial_anchor_session_release(Native Method)
at com.microsoft.azure.spatialanchors.CloudSpatialAnchorSession.finalize(CloudSpatialAnchorSession.java:62)
at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:256)
at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:243)
at java.lang.Daemons$Daemon.run(Daemons.java:109)
at java.lang.Thread.run(Thread.java:764)

The problem seems to be that com.microsoft.azure.spatialanchors.NativeLibrary cannot be found. However, I've copied pretty much all settings from the sample. The Gradle scripts are the same. The manifest has the same permissions, features and meta-data. The android versions are pretty much the same. Both projects are running on the same device... I'm having a hard time figuring out why the sample can access all of the classes of the Azure library but my custom project can't access NativeLibrary.

The actual crash happens in the Azure library. When the constructor for CloudSpatialAnchorSession gets called, the second line of the constructor fails to find the proper implementation:

public CloudSpatialAnchorSession() {
    Out<Long> result_handle = new Out();
    status resultStatus = NativeLibrary.ssc_cloud_spatial_anchor_session_create(result_handle);
    this.handle = (Long)result_handle.value;
    NativeLibraryHelpers.checkStatus(this.handle, resultStatus);
    CookieTracker.add(this);
}

It lands in a dead-end:

class NativeLibrary {
    NativeLibrary() {
    }
    ...
    static native status ssc_cloud_spatial_anchor_session_create(Out<Long> var0);
    ...
}

EnoughtDataToCreate for saving anchor will result in null currentCloudAnchor

Hi!
I'm successfully using the anchors with multiple hololenses but currently I'm running into issues, that the anchor is not saved and hence an exception occurrs.
I could locate that the currentCloudAnchor in

this.currentCloudAnchor = await this.CloudManager.StoreAnchorInCloud(localCloudAnchor);
is null.
When looking deeper into StoreAnchorInCloud (
if (SessionStatusIndicators[(int)SessionStatusIndicatorType.ReadyForCreate] < 1)
) I can see the check for if(SessionStatusIndicatorType.ReadyForCreate < 1) return null;

So as it seems my exceptions are caused by the fact, that in

the check should not be for EnoughDataToCreate but for the same ReadyForCreate

Is this correct?

Relocate anchors by finding any of the anchors placed in area

I did use the sample app and tried the second demo, i created two anchors in my area and save them on cloud. then it asked me to find the last anchor which was saved and hence found the other two with respect to the last one. Is it possible to find any of the anchors, but not the last one. It is mandatory?? like if i place 10 anchors in my office and try to find any of the anchors, will it display all the anchors if i just find any one of them? Just like the placenote does in iOS

Questions about the Anchor models

My friend and I are each working on Android and iOS version of Spatial anchors. We get confused when trying to change the anchor model.

We find the code generate sphere or box and know how to change it to torus or other simple 3d objects. But we don't know how the object is positioned. I have done some WebGL and OpenGL 3D modeling, but not AR. When we do the text anchor, the text image is often out of our expected position.

I am confused with how the 3D coordinate axis is set in this project. Where is the origin of the coordinate and how objects are created with respect to the anchor position? I did not find any explanation in the docs website. Could you explain it or show me a web link that explains the mechanism about the graphics model generation?

Moreover, is there an official way to import models? How did you set the sphere tags and distance meters in the demo video( https://www.youtube.com/watch?v=CVmfP8TaqNU )? By Unity? Or is there a Sceneform method to achieve the same goal?

Finally, my friend is curious about the overall mechanism of spatial anchors. We did not find any explanation document and mainly understand the project by guessing. Could you provide a brief explanation about the overall mechanism? It is fine if specific.

CloudSpatialException - Trying to run the demo

I am trying to run the demo as explained here: https://docs.microsoft.com/en-gb/azure/spatial-anchors/quickstarts/get-started-unity-hololens

Basically, I just put my Azure IDs and run the demo as explained. I then create a local Anchor that seems to work fine. The issue comes after trying to send the local Anchor to the cloud. A big CloudSpatialException appears on my Hololens screen.
Here is a part of the log file:

service unavailable or unspecified error found
 
(Filename: C:\...\unity\build\Runtime/Export/Debug.bindings.h Line: 45)

CloudSpatialException: 
   at Microsoft.Azure.SpatialAnchors.NativeLibraryHelpers.CheckStatus(IntPtr handle, status value)
   at Microsoft.Azure.SpatialAnchors.CloudSpatialAnchorSession.<>c__DisplayClass68_0.<CreateAnchorAsync>b__0()
   at System.Threading.Tasks.Task.InnerInvoke()
   at System.Threading.Tasks.Task.Execute()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Azure.SpatialAnchors.CloudSpatialAnchorSession.<CreateAnchorAsync>d__68.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsDemoWrapper.<StoreAnchorInCloud>d__59.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.DemoScriptBase.<>c__DisplayClass33_0.<<SaveCurrentObjectAnchorToCloud>b__0>d.MoveNext() 
(Filename: <Unknown> Line: 0)

Failed to save anchor Microsoft.Azure.SpatialAnchors.CloudSpatialException
   at Microsoft.Azure.SpatialAnchors.NativeLibraryHelpers.CheckStatus(IntPtr handle, status value)
   at Microsoft.Azure.SpatialAnchors.CloudSpatialAnchorSession.<>c__DisplayClass68_0.<CreateAnchorAsync>b__0()
   at System.Threading.Tasks.Task.InnerInvoke()
   at System.Threading.Tasks.Task.Execute()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Azure.SpatialAnchors.CloudSpatialAnchorSession.<CreateAnchorAsync>d__68.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.AzureSpatialAnchorsDemoWrapper.<StoreAnchorInCloud>d__59.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Azure.SpatialAnchors.Unity.Samples.DemoScriptBase.<>c__DisplayClass33_0.<<SaveCurrentObjectAnchorToCloud>b__0>d.MoveNext()

So I tried this tutorial: https://docs.microsoft.com/en-gb/azure/spatial-anchors/tutorials/tutorial-new-unity-hololens-app
And it seems to have the same error: ASA Error: service unavailable or unspecified error found

I'm running on Windows 10, Visual Studio 2019. I've downloaded all requirements as explained in the "Prerequisites" section.
What should I do ?

Useless Without ARFoundation

Frankly, very few if any people are going to adopt this for serious applications without ARFoundation support. I'd be happy to roll my own with native pointers but cannot because ASA does not support the latest ARKit/Core versions that ARFoundation supports.
Every day this repo sits without an update for the latest ARKit/Core plugins is a day that you might as well have literally not created this product. 10000% more people -- not an exaggeration -- would be pulling from this repo if you supported ARFoundation.
Don't blow it.

EnoughDataToQuery not functional?

AzureSpatialAnchorsDemoWrapper provides a property called EnoughDataToCreate. This property looks at the SessionStatusIndicator of RecommendedForCreate and checks to make sure it's above 1.0. This is a great indicator that enough data has been gathered to successfully create an anchor.

Under the covers, SessionStatusIndicators are filled in during CloudSpatialAnchorSession_SessionUpdated. However, the only two values that are captured in that handler are args.Status.ReadyForCreateProgress and args.Status.RecommendedForCreateProgress.

There does not appear to be any field exposed in SessionUpdatedEventArgs that describes how prepared the system is to execute a query. And it does not appear that AzureSpatialAnchorsDemoWrapper.EnoughDataToQuery provides a meaningful value.

Should the application wait for any particular condition before attempting to execute a query? Or if a query can be executed at any time, should the EnoughDataToQuery property just be removed?

Cannot build on HoloLens Unity quickstart guide

Hi,

I have problem when build the sample from HoloLens Unity quickstart. Never had this error before on build previous other HoloLens app with Visual Studio 2017. I have reimport all again in Unity and tried to build it again, but it seems that it is still error. Here is the error code:

The command ""C:\Users\me\Documents\Projects\Unity\Mixed Reality Project\azure-spatial-anchors-samples\Unity\Builds\HL1\Unity\Tools\AssemblyConverter.exe" -platform=uap -bits=32 -configuration=Release -removeDebuggableAttribute=False -uwpsdk=10.0.17763.0 -path="." -path="C:\Program Files\Unity\2018.3.6f1\Editor\Data\PlaybackEngines\MetroSupport\Players\UAP\dotnet\x86\Release" -workingDir="C:\Users\me\Documents\Projects\Unity\Mixed Reality Project\azure-spatial-anchors-samples\Unity\Builds\HL1\HelloAR U3D\" "@C:\Users\me\Documents\Projects\Unity\Mixed Reality Project\azure-spatial-anchors-samples\Unity\Builds\HL1\HelloAR U3D\AssemblyConverterArgs.txt"" exited with code 1

This might be wrong configuration that I set up.

Thank you

Store Cloud Anchor Locally

Hello everyone,
I cannot figure out how to save the C# object : CloudSpatialAnchor locally, so it can be persistent and save into the local Unity cache...
Is there is a way to store the anchor locally instead of sending it to the cloud ? Any tought about this ?

Thank you

Creation failed

exception causing failure: std::exception

I implemented the keys and run it successfully,
but When i try to save the anchor of the cube it fails.
xcode 10.1
ipad 2017

Remove AppCenter telemetry

I noticed that the Android Java SDK takes a dependency on AppCenter and is reporting telemetry.
Please remove this, as SDK's should never collect telemetry without app developers being able to opt in to (and not out of) to it. They could inadvertently be breaking data privacy policies, because we have no knowledge this is happening under our noses.

IMHO it's a big no-no for SDKs to collect telemetry. That's for app-developers to do only.

Use Spatial Anchors with ARCore Nodes

I want to use spatial anchors to save the my nodes of arcore, like i use the arcore for all the scanning and points and use azure's cloud for saving them in order to get them back later since arcore cloud only allows 24h to maintain the session. is this even possible? because i have used the Azure android samples and haven't got the best results so far so i am willing to use azure cloud just for the cloud (having saved the anchors/nodes).

'Next' button missing in create session

Hi there, I tried to run the azure spatial anchors unity project with scene 'Local shared Demo' in Hololens v1. When I try to create an anchor, after couple of clicks the 'Next' button got vanished. However, the clicks were still working (though button not there).

Device used: Hololens v1
Unity version: 2018.3.14f
Visual Studio: 2017 (community edition)

JNI unable to load `hasVerticalAccuracy()` on NDK example

It looks like the 1.3.0 update introduced errors related to missing hasVerticalAccuracy symbols. I am seeing the following error when trying to run the NDK example, after the 1.3.0 update:

NOTE: I was able to successfully run the same example with version 1.2.1.

NOTE-2: I was able to reproduce the error on a Samsung Galaxy S8 with Android 7 (API level 25), and a One Plus 5 with Android 7 (API level 25). It looks like android.location.Location::hasVerticalAccuracy() was added in API level 26.

NOTE-3: I finally got the NDK demo working by upgrading my Samsung S8 to Android 8 (API level 26), and setting the minSdkLevel to 26 on app/build.gradle. Not supporting API level < 25 is still a problem though.

2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470] JNI DETECTED ERROR IN APPLICATION: JNI NewGlobalRef called with pending exception java.lang.NoSuchMethodError: no non-static method "Landroid/location/Location;.hasVerticalAccuracy()Z"
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.String java.lang.Runtime.nativeLoad(java.lang.String, java.lang.ClassLoader, java.lang.String) (Runtime.java:-2)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.String java.lang.Runtime.doLoad(java.lang.String, java.lang.ClassLoader) (Runtime.java:1072)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void java.lang.Runtime.loadLibrary0(java.lang.ClassLoader, java.lang.String) (Runtime.java:987)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void java.lang.System.loadLibrary(java.lang.String) (System.java:1530)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void com.microsoft.samplenativeandroid.JniInterface.<clinit>() (JniInterface.java:13)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void com.microsoft.samplenativeandroid.JniInterface.onCreate(android.content.res.AssetManager) (JniInterface.java:-2)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void com.microsoft.samplenativeandroid.MainActivity.onCreate(android.os.Bundle) (MainActivity.java:74)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.app.Activity.performCreate(android.os.Bundle) (Activity.java:6743)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.app.Instrumentation.callActivityOnCreate(android.app.Activity, android.os.Bundle) (Instrumentation.java:1134)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.Activity android.app.ActivityThread.performLaunchActivity(android.app.ActivityThread$ActivityClientRecord, android.content.Intent) (ActivityThread.java:2715)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.app.ActivityThread.handleLaunchActivity(android.app.ActivityThread$ActivityClientRecord, android.content.Intent, java.lang.String) (ActivityThread.java:2848)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.app.ActivityThread.-wrap12(android.app.ActivityThread, android.app.ActivityThread$ActivityClientRecord, android.content.Intent, java.lang.String) (ActivityThread.java:-1)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.app.ActivityThread$H.handleMessage(android.os.Message) (ActivityThread.java:1552)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:102)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.os.Looper.loop() (Looper.java:154)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:6334)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.Object java.lang.reflect.Method.invoke!(java.lang.Object, java.lang.Object[]) (Method.java:-2)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run() (ZygoteInit.java:886)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:776)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470] 
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]     in call to NewGlobalRef
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]     from java.lang.String java.lang.Runtime.nativeLoad(java.lang.String, java.lang.ClassLoader, java.lang.String)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470] "main" prio=5 tid=1 Runnable
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   | group="main" sCount=0 dsCount=0 obj=0x74793268 self=0xe9b05400
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   | sysTid=30562 nice=-10 cgrp=default sched=0/0 handle=0xec953534
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   | state=R schedstat=( 125126562 6045935 75 ) utm=9 stm=3 core=6 HZ=100
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   | stack=0xff4f1000-0xff4f3000 stackSize=8MB
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   | held mutexes= "mutator lock"(shared held)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #00 pc 0037b96d  /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #01 pc 0035b791  /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+304)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #02 pc 00253f89  /system/lib/libart.so (_ZN3art9JavaVMExt8JniAbortEPKcS2_+812)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #03 pc 002541d1  /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortVEPKcS2_St9__va_list+64)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #04 pc 000cd6fb  /system/lib/libart.so (_ZN3art11ScopedCheck6AbortFEPKcz+46)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #05 pc 000cd2eb  /system/lib/libart.so (_ZN3art11ScopedCheck11CheckThreadEP7_JNIEnv+362)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #06 pc 000cc30f  /system/lib/libart.so (_ZN3art11ScopedCheck22CheckPossibleHeapValueERNS_18ScopedObjectAccessEcNS_12JniValueTypeE+26)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #07 pc 000cb6af  /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+810)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #08 pc 000ce033  /system/lib/libart.so (_ZN3art8CheckJNI6NewRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+442)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #09 pc 003611b9  /system/lib/libart.so (_ZN3art6Thread22SetClassLoaderOverrideEP8_jobject+32)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #10 pc 00255c93  /system/lib/libart.so (_ZN3art9JavaVMExt17LoadNativeLibraryEP7_JNIEnvRKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEP8_jobjectP8_jstringPS9_+1878)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #11 pc 00003423  /system/lib/libopenjdkjvm.so (JVM_NativeLoad+190)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   native: #12 pc 00068c25  /system/framework/arm/boot.oat (Java_java_lang_Runtime_nativeLoad__Ljava_lang_String_2Ljava_lang_ClassLoader_2Ljava_lang_String_2+144)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.Runtime.nativeLoad(Native method)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.Runtime.doLoad(Runtime.java:1072)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.Runtime.loadLibrary0(Runtime.java:987)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.System.loadLibrary(System.java:1530)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at com.microsoft.samplenativeandroid.JniInterface.<clinit>(JniInterface.java:13)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at com.microsoft.samplenativeandroid.JniInterface.onCreate(Native method)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at com.microsoft.samplenativeandroid.MainActivity.onCreate(MainActivity.java:74)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.Activity.performCreate(Activity.java:6743)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1134)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2715)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2848)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.ActivityThread.-wrap12(ActivityThread.java:-1)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1552)
2019-07-29 13:51:15.093 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.os.Handler.dispatchMessage(Handler.java:102)
2019-07-29 13:51:15.094 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.os.Looper.loop(Looper.java:154)
2019-07-29 13:51:15.094 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at android.app.ActivityThread.main(ActivityThread.java:6334)
2019-07-29 13:51:15.094 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at java.lang.reflect.Method.invoke!(Native method)
2019-07-29 13:51:15.094 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
2019-07-29 13:51:15.094 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
2019-07-29 13:51:15.094 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/java_vm_ext.cc:470] 
2019-07-29 13:51:15.123 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] Runtime aborting...
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] Aborting thread:
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "main" prio=10 tid=1 Native
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=0 dsCount=0 obj=0x74793268 self=0xe9b05400
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30562 nice=-10 cgrp=default sched=0/0 handle=0xec953534
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=R schedstat=( 132963802 6045935 75 ) utm=9 stm=4 core=6 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xff4f1000-0xff4f3000 stackSize=8MB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes= "abort lock"
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 0037b96d  /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 0035b791  /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+304)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 0034e29d  /system/lib/libart.so (_ZNK3art10AbortState10DumpThreadERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEPNS_6ThreadE+24)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 0034e119  /system/lib/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+424)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 00344ad5  /system/lib/libart.so (_ZN3art7Runtime5AbortEPKc+92)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 000b716f  /system/lib/libart.so (_ZN3art10LogMessageD2Ev+966)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #06 pc 00254127  /system/lib/libart.so (_ZN3art9JavaVMExt8JniAbortEPKcS2_+1226)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #07 pc 002541d1  /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortVEPKcS2_St9__va_list+64)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #08 pc 000cd6fb  /system/lib/libart.so (_ZN3art11ScopedCheck6AbortFEPKcz+46)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #09 pc 000cd2eb  /system/lib/libart.so (_ZN3art11ScopedCheck11CheckThreadEP7_JNIEnv+362)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #10 pc 000cc30f  /system/lib/libart.so (_ZN3art11ScopedCheck22CheckPossibleHeapValueERNS_18ScopedObjectAccessEcNS_12JniValueTypeE+26)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #11 pc 000cb6af  /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+810)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #12 pc 000ce033  /system/lib/libart.so (_ZN3art8CheckJNI6NewRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+442)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #13 pc 003611b9  /system/lib/libart.so (_ZN3art6Thread22SetClassLoaderOverrideEP8_jobject+32)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #14 pc 00255c93  /system/lib/libart.so (_ZN3art9JavaVMExt17LoadNativeLibraryEP7_JNIEnvRKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEP8_jobjectP8_jstringPS9_+1878)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #15 pc 00003423  /system/lib/libopenjdkjvm.so (JVM_NativeLoad+190)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #16 pc 00068c25  /system/framework/arm/boot.oat (???)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Runtime.nativeLoad(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Runtime.doLoad(Runtime.java:1072)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Runtime.loadLibrary0(Runtime.java:987)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.System.loadLibrary(System.java:1530)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.microsoft.samplenativeandroid.JniInterface.<clinit>(JniInterface.java:13)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.microsoft.samplenativeandroid.JniInterface.onCreate(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.microsoft.samplenativeandroid.MainActivity.onCreate(MainActivity.java:74)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.Activity.performCreate(Activity.java:6743)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1134)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2715)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2848)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.-wrap12(ActivityThread.java:-1)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1552)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.os.Handler.dispatchMessage(Handler.java:102)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.os.Looper.loop(Looper.java:154)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.main(ActivityThread.java:6334)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.reflect.Method.invoke!(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] Pending exception java.lang.NoSuchMethodError: no non-static method "Landroid/location/Location;.hasVerticalAccuracy()Z"
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.String java.lang.Runtime.nativeLoad(java.lang.String, java.lang.ClassLoader, java.lang.String) (Runtime.java:-2)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.String java.lang.Runtime.doLoad(java.lang.String, java.lang.ClassLoader) (Runtime.java:1072)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void java.lang.Runtime.loadLibrary0(java.lang.ClassLoader, java.lang.String) (Runtime.java:987)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void java.lang.System.loadLibrary(java.lang.String) (System.java:1530)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void com.microsoft.samplenativeandroid.JniInterface.<clinit>() (JniInterface.java:13)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void com.microsoft.samplenativeandroid.JniInterface.onCreate(android.content.res.AssetManager) (JniInterface.java:-2)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void com.microsoft.samplenativeandroid.MainActivity.onCreate(android.os.Bundle) (MainActivity.java:74)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.app.Activity.performCreate(android.os.Bundle) (Activity.java:6743)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.app.Instrumentation.callActivityOnCreate(android.app.Activity, android.os.Bundle) (Instrumentation.java:1134)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.Activity android.app.ActivityThread.performLaunchActivity(android.app.ActivityThread$ActivityClientRecord, android.content.Intent) (ActivityThread.java:2715)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.app.ActivityThread.handleLaunchActivity(android.app.ActivityThread$ActivityClientRecord, android.content.Intent, java.lang.String) (ActivityThread.java:2848)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.app.ActivityThread.-wrap12(android.app.ActivityThread, android.app.ActivityThread$ActivityClientRecord, android.content.Intent, java.lang.String) (ActivityThread.java:-1)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.app.ActivityThread$H.handleMessage(android.os.Message) (ActivityThread.java:1552)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:102)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.os.Looper.loop() (Looper.java:154)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:6334)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Object java.lang.reflect.Method.invoke!(java.lang.Object, java.lang.Object[]) (Method.java:-2)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run() (ZygoteInit.java:886)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:776)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] Dumping all threads without appropriate locks held: thread list lock mutator lock
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] All threads:
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] DALVIK THREADS (13):
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "main" prio=10 tid=1 Runnable
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=0 dsCount=0 obj=0x74793268 self=0xe9b05400
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30562 nice=-10 cgrp=default sched=0/0 handle=0xec953534
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=R schedstat=( 152787345 6045935 75 ) utm=10 stm=5 core=6 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xff4f1000-0xff4f3000 stackSize=8MB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes= "abort lock" "mutator lock"(shared held)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 0037b96d  /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 0035b791  /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+304)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 0036dcc9  /system/lib/libart.so (_ZN3art14DumpCheckpoint3RunEPNS_6ThreadE+608)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 00367d77  /system/lib/libart.so (_ZN3art10ThreadList13RunCheckpointEPNS_7ClosureE+330)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 00367a75  /system/lib/libart.so (_ZN3art10ThreadList4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb+584)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 0034e0e5  /system/lib/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+372)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #06 pc 00344ad5  /system/lib/libart.so (_ZN3art7Runtime5AbortEPKc+92)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #07 pc 000b716f  /system/lib/libart.so (_ZN3art10LogMessageD2Ev+966)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #08 pc 00254127  /system/lib/libart.so (_ZN3art9JavaVMExt8JniAbortEPKcS2_+1226)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #09 pc 002541d1  /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortVEPKcS2_St9__va_list+64)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #10 pc 000cd6fb  /system/lib/libart.so (_ZN3art11ScopedCheck6AbortFEPKcz+46)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #11 pc 000cd2eb  /system/lib/libart.so (_ZN3art11ScopedCheck11CheckThreadEP7_JNIEnv+362)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #12 pc 000cc30f  /system/lib/libart.so (_ZN3art11ScopedCheck22CheckPossibleHeapValueERNS_18ScopedObjectAccessEcNS_12JniValueTypeE+26)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #13 pc 000cb6af  /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+810)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #14 pc 000ce033  /system/lib/libart.so (_ZN3art8CheckJNI6NewRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+442)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #15 pc 003611b9  /system/lib/libart.so (_ZN3art6Thread22SetClassLoaderOverrideEP8_jobject+32)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #16 pc 00255c93  /system/lib/libart.so (_ZN3art9JavaVMExt17LoadNativeLibraryEP7_JNIEnvRKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEP8_jobjectP8_jstringPS9_+1878)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #17 pc 00003423  /system/lib/libopenjdkjvm.so (JVM_NativeLoad+190)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #18 pc 00068c25  /system/framework/arm/boot.oat (Java_java_lang_Runtime_nativeLoad__Ljava_lang_String_2Ljava_lang_ClassLoader_2Ljava_lang_String_2+144)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Runtime.nativeLoad(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Runtime.doLoad(Runtime.java:1072)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Runtime.loadLibrary0(Runtime.java:987)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.System.loadLibrary(System.java:1530)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.microsoft.samplenativeandroid.JniInterface.<clinit>(JniInterface.java:13)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.microsoft.samplenativeandroid.JniInterface.onCreate(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.microsoft.samplenativeandroid.MainActivity.onCreate(MainActivity.java:74)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.Activity.performCreate(Activity.java:6743)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1134)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2715)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2848)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.-wrap12(ActivityThread.java:-1)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1552)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.os.Handler.dispatchMessage(Handler.java:102)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.os.Looper.loop(Looper.java:154)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.app.ActivityThread.main(ActivityThread.java:6334)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.reflect.Method.invoke!(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "Jit thread pool worker thread 0" prio=10 tid=2 Native (still starting up)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x0 self=0xe1e8c000
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30567 nice=9 cgrp=default sched=0/0 handle=0xe9193920
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 788021 0 2 ) utm=0 stm=0 core=1 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xe9095000-0xe9097000 stackSize=1022KB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes=
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: __switch_to+0x88/0x94
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait_queue_me+0xcc/0x124
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait+0xec/0x200
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: do_futex+0xcc/0x47c
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_SyS_futex+0xcc/0x144
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: el0_svc_naked+0x24/0x28
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017880  /system/lib/libc.so (syscall+28)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b8e61  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 0036f017  /system/lib/libart.so (_ZN3art10ThreadPool7GetTaskEPNS_6ThreadE+168)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 0036e8c3  /system/lib/libart.so (_ZN3art16ThreadPoolWorker3RunEv+62)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 0036e3f1  /system/lib/libart.so (_ZN3art16ThreadPoolWorker8CallbackEPv+64)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 00047a47  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #06 pc 0001a165  /system/lib/libc.so (__start_thread+6)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "Signal Catcher" prio=10 tid=3 WaitingInMainSignalCatcherLoop
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c4fee0 self=0xd7b0ad00
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30568 nice=0 cgrp=default sched=0/0 handle=0xe9092920
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 1038646 0 1 ) utm=0 stm=0 core=2 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xe8f96000-0xe8f98000 stackSize=1014KB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes=
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: __switch_to+0x88/0x94
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: do_sigtimedwait+0xd8/0x1b4
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_SyS_rt_sigtimedwait+0x98/0xd4
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: el0_svc_naked+0x24/0x28
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 0004929c  /system/lib/libc.so (__rt_sigtimedwait+12)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 0001e6ef  /system/lib/libc.so (sigwait+34)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 003516c3  /system/lib/libart.so (_ZN3art9SignalSet4WaitEv+22)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 003512c3  /system/lib/libart.so (_ZN3art13SignalCatcher13WaitForSignalEPNS_6ThreadERNS_9SignalSetE+162)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 00350017  /system/lib/libart.so (_ZN3art13SignalCatcher3RunEPv+198)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 00047a47  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #06 pc 0001a165  /system/lib/libc.so (__start_thread+6)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "JDWP" prio=10 tid=4 WaitingInMainDebuggerLoop
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c4ff70 self=0xe1e8d400
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30569 nice=0 cgrp=default sched=0/0 handle=0xe8f93920
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 3070990 361301 8 ) utm=0 stm=0 core=2 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xe8e97000-0xe8e99000 stackSize=1014KB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes=
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: __switch_to+0x88/0x94
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: poll_schedule_timeout+0x40/0x60
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: do_select+0x4ac/0x4ec
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_core_sys_select+0x15c/0x208
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_SyS_pselect6+0x16c/0x1f0
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: el0_svc_naked+0x24/0x28
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 00049174  /system/lib/libc.so (__pselect6+20)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 0001d4b5  /system/lib/libc.so (select+88)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 00427f23  /system/lib/libart.so (_ZN3art4JDWP12JdwpAdbState15ProcessIncomingEv+302)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 002641a5  /system/lib/libart.so (_ZN3art4JDWP9JdwpState3RunEv+1440)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 00263637  /system/lib/libart.so (_ZN3art4JDWPL15StartJdwpThreadEPv+22)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 00047a47  /system/lib/libc.so (_ZL15__pthread_startPv+22)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #06 pc 0001a165  /system/lib/libc.so (__start_thread+6)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   (no managed stack frames)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "ReferenceQueueDaemon" prio=10 tid=5 Waiting
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c580d0 self=0xd7b0c100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30570 nice=0 cgrp=default sched=0/0 handle=0xe8e94920
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 884270 211510 5 ) utm=0 stm=0 core=1 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xe8d92000-0xe8d94000 stackSize=1038KB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes=
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: __switch_to+0x88/0x94
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait_queue_me+0xcc/0x124
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait+0xec/0x200
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: do_futex+0xcc/0x47c
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_SyS_futex+0xcc/0x144
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: el0_svc_naked+0x24/0x28
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017880  /system/lib/libc.so (syscall+28)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b8e61  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 002bca2d  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+516)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 002be263  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+118)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 002cd1df  /system/lib/libart.so (_ZN3artL11Object_waitEP7_JNIEnvP8_jobject+32)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000557  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+74)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - waiting on <0x0019d8c1> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:158)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x0019d8c1> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "FinalizerDaemon" prio=10 tid=6 Waiting
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c58160 self=0xd7b0c600
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30571 nice=0 cgrp=default sched=0/0 handle=0xe8d8f920
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 1515937 0 8 ) utm=0 stm=0 core=2 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xe8c8d000-0xe8c8f000 stackSize=1038KB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes=
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: __switch_to+0x88/0x94
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait_queue_me+0xcc/0x124
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait+0xec/0x200
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: do_futex+0xcc/0x47c
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_SyS_futex+0xcc/0x144
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: el0_svc_naked+0x24/0x28
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017880  /system/lib/libc.so (syscall+28)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b8e61  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 002bca2d  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+516)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 002be263  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+118)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 002cd20b  /system/lib/libart.so (_ZN3artL13Object_waitJIEP7_JNIEnvP8_jobjectxi+36)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000655  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__JI+96)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - waiting on <0x01524866> (a java.lang.Object)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait(Object.java:407)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x01524866> (a java.lang.Object)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:212)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Thread.run(Thread.java:761)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] "FinalizerWatchdogDaemon" prio=10 tid=7 Waiting
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | group="" sCount=1 dsCount=0 obj=0x12c581f0 self=0xd7b0cb00
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | sysTid=30572 nice=0 cgrp=default sched=0/0 handle=0xe8c8a920
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | state=S schedstat=( 529218 0 2 ) utm=0 stm=0 core=0 HZ=100
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | stack=0xe8b88000-0xe8b8a000 stackSize=1038KB
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   | held mutexes=
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: __switch_to+0x88/0x94
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait_queue_me+0xcc/0x124
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: futex_wait+0xec/0x200
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: do_futex+0xcc/0x47c
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_SyS_futex+0xcc/0x144
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: el0_svc_naked+0x24/0x28
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #00 pc 00017880  /system/lib/libc.so (syscall+28)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b8e61  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 002bca2d  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+516)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 002be263  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+118)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 002cd1df  /system/lib/libart.so (_ZN3artL11Object_waitEP7_JNIEnvP8_jobject+32)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000557  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+74)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Object.wait!(Native method)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - waiting on <0x06fc17a7> (a java.lang.Daemons$FinalizerWatchdogDaemon)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:282)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x06fc17a7> (a java.lang.Daemons$FinalizerWatchdogDaemon)
2019-07-29 13:51:15.124 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:257)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: compat_SyS_futex+0xcc/0x144
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   kernel: el0_svc_naked+0x24/0x28
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #01 pc 000b8e61  /system/lib/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+92)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #02 pc 002bca2d  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadExibNS_11ThreadStateE+516)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #03 pc 002be263  /system/lib/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadEPNS_6mirror6ObjectExibNS_11ThreadStateE+118)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #04 pc 002cd1df  /system/lib/libart.so (_ZN3artL11Object_waitEP7_JNIEnvP8_jobject+32)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   native: #05 pc 00000557  /system/framework/arm/boot.oat (Java_java_lang_Object_wait__+74)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1472)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   - locked <0x0ab52454> (a android.opengl.GLSurfaceView$GLThreadManager)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422]   at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1259)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:422] 
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427] JNI DETECTED ERROR IN APPLICATION: JNI NewGlobalRef called with pending exception java.lang.NoSuchMethodError: no non-static method "Landroid/location/Location;.hasVerticalAccuracy()Z"
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at java.lang.String java.lang.Runtime.nativeLoad(java.lang.String, java.lang.ClassLoader, java.lang.String) (Runtime.java:-2)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at java.lang.String java.lang.Runtime.doLoad(java.lang.String, java.lang.ClassLoader) (Runtime.java:1072)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void java.lang.Runtime.loadLibrary0(java.lang.ClassLoader, java.lang.String) (Runtime.java:987)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void java.lang.System.loadLibrary(java.lang.String) (System.java:1530)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void com.microsoft.samplenativeandroid.JniInterface.<clinit>() (JniInterface.java:13)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void com.microsoft.samplenativeandroid.JniInterface.onCreate(android.content.res.AssetManager) (JniInterface.java:-2)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void com.microsoft.samplenativeandroid.MainActivity.onCreate(android.os.Bundle) (MainActivity.java:74)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void android.app.Activity.performCreate(android.os.Bundle) (Activity.java:6743)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void android.app.Instrumentation.callActivityOnCreate(android.app.Activity, android.os.Bundle) (Instrumentation.java:1134)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at android.app.Activity android.app.ActivityThread.performLaunchActivity(android.app.ActivityThread$ActivityClientRecord, android.content.Intent) (ActivityThread.java:2715)
2019-07-29 13:51:15.125 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void android.app.ActivityThread.handleLaunchActivity(android.app.ActivityThread$ActivityClientRecord, android.content.Intent, java.lang.String) (ActivityThread.java:2848)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void android.os.Handler.dispatchMessage(android.os.Message) (Handler.java:102)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void android.os.Looper.loop() (Looper.java:154)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void android.app.ActivityThread.main(java.lang.String[]) (ActivityThread.java:6334)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at void com.android.internal.os.ZygoteInit.main(java.lang.String[]) (ZygoteInit.java:776)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427] 
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]     in call to NewGlobalRef
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   | group="main" sCount=0 dsCount=0 obj=0x74793268 self=0xe9b05400
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   | state=R schedstat=( 125126562 6045935 75 ) utm=9 stm=3 core=6 HZ=100
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   | stack=0xff4f1000-0xff4f3000 stackSize=8MB
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   | held mutexes= "mutator lock"(shared held)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #00 pc 0037b96d  /system/lib/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+128)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #01 pc 0035b791  /system/lib/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+304)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #02 pc 00253f89  /system/lib/libart.so (_ZN3art9JavaVMExt8JniAbortEPKcS2_+812)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #03 pc 002541d1  /system/lib/libart.so (_ZN3art9JavaVMExt9JniAbortVEPKcS2_St9__va_list+64)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #04 pc 000cd6fb  /system/lib/libart.so (_ZN3art11ScopedCheck6AbortFEPKcz+46)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #05 pc 000cd2eb  /system/lib/libart.so (_ZN3art11ScopedCheck11CheckThreadEP7_JNIEnv+362)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #06 pc 000cc30f  /system/lib/libart.so (_ZN3art11ScopedCheck22CheckPossibleHeapValueERNS_18ScopedObjectAccessEcNS_12JniValueTypeE+26)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #07 pc 000cb6af  /system/lib/libart.so (_ZN3art11ScopedCheck5CheckERNS_18ScopedObjectAccessEbPKcPNS_12JniValueTypeE+810)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #09 pc 003611b9  /system/lib/libart.so (_ZN3art6Thread22SetClassLoaderOverrideEP8_jobject+32)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #10 pc 00255c93  /system/lib/libart.so (_ZN3art9JavaVMExt17LoadNativeLibraryEP7_JNIEnvRKNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEP8_jobjectP8_jstringPS9_+1878)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #11 pc 00003423  /system/lib/libopenjdkjvm.so (JVM_NativeLoad+190)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   native: #12 pc 00068c25  /system/framework/arm/boot.oat (Java_java_lang_Runtime_nativeLoad__Ljava_lang_String_2Ljava_lang_ClassLoader_2Ljava_lang_String_2+144)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at java.lang.Runtime.doLoad(Runtime.java:1072)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at java.lang.Runtime.loadLibrary0(Runtime.java:987)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   - locked <0x021c55a8> (a java.lang.Runtime)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at java.lang.System.loadLibrary(System.java:1530)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at com.microsoft.samplenativeandroid.JniInterface.<clinit>(JniInterface.java:13)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at com.microsoft.samplenativeandroid.JniInterface.onCreate(Native method)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at com.microsoft.samplenativeandroid.MainActivity.onCreate(MainActivity.java:74)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1134)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2715)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at android.app.ActivityThread.-wrap12(ActivityThread.java:-1)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1552)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at android.app.ActivityThread.main(ActivityThread.java:6334)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at java.lang.reflect.Method.invoke!(Native method)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427] 
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/art: art/runtime/runtime.cc:427] 
2019-07-29 13:51:15.126 30562-30562/com.microsoft.samplenativeandroid A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 30562 (lenativeandroid)

Error when opening SharingService solution

Hello! I'm quite new to C#, Unity, Hololens development etc. I've been trying to figure out how the company i'm interning for can use Azure spatial anchors for holograms to make the office more interesting when showing guests around. (Have them put on a Hololens or quickly deploy and app on their phones)

The Unity Hololens quickstart went swimmingly, but when i started working through the tutorial i very quickly got stuck.
I opened the SharingService project like the tutorial told me to and was greeted with an error message.

image

The output window displayed the following:
D:\Unity Projects\Spatial anchors\Sharing\SharingServiceSample\SharingService.csproj : error : Project file is incomplete. Expected imports are missing.

I made sure nothing was wrong with my files and ended up re-cloning just to be sure; didn't solve the issue.
I repaired Visual Studio 2017, also just to be sure and again this didn't solve it.
This leads me to believe something's wrong with the .csproj file? (Or it is just a me-problem as per usual).

Thanks in advance for the help and i hope this helps you out aswell.

unity ios symbol(s) not found for architecture arm64

Hi

I have downloaded the sample from here and added the arkit assets folder
but when I make the build I get an error saying symbol(s) not found for architecture arm64

In the quick steps you mention to run the .xcworkspace file instead of the .xcodeproj file
but that file isnt in the folder

also having issues in running pod install --repo-update (doesnt recognized the command but cocoapods is installed) is there some alternative to this step

@craigktreasure @vriveras any idea ?
thanks in advance

ps: I was able to run the android sample and work with it and I am using Unity 2018.3.6

part of the error below

_NativeLibrary_ssc_session_error_event_args_release_mEDED3848D389420B7B852D2AC25A7CC40F024592 in Bulk_Assembly-CSharp_0.o\ _SessionErrorEventArgs_Finalize_mC79DDF754A677DF097334E4DFE9206861475B448 in Bulk_Assembly-CSharp_0.o\ (maybe you meant: _NativeLibrary_ssc_session_error_event_args_release_mEDED3848D389420B7B852D2AC25A7CC40F024592)\ "_ssc_cloud_spatial_anchor_session_diagnostics_addref", referenced from:\ _CloudSpatialAnchorSessionDiagnostics__ctor_mFF7CBDA6CE41A20A974739C52DFCD149DFC108F2 in Bulk_Assembly-CSharp_0.o\ _NativeLibrary_ssc_cloud_spatial_anchor_session_diagnostics_addref_m9E5CDBB05E4ACEC9D4445D0A855A0F5BDD54F092 in Bulk_Assembly-CSharp_0.o\ (maybe you meant: _NativeLibrary_ssc_cloud_spatial_anchor_session_diagnostics_addref_m9E5CDBB05E4ACEC9D4445D0A855A0F5BDD54F092)\ ld: symbol(s) not found for architecture arm64\ clang: error: linker command failed with exit code 1 (use -v to see invocation)}

Unity HoloLens sample freezing at "Looking for Anchors" step

Hi,

The Unity HoloLens sample is stuck at one stage if its not build with Unity C# Projects as output.

I basically just tapped through the Basic scene demo. It all worked well and I see the anchor upload worked in the Azure Portal so Key and ID should be fine. Later it is stuck in "Looking for Anchor..."

It is sporadically and looks like some race condition / Heisenbug. When you build with C# projects and attach a debugger it all works fine but not when in Release mode without C# projects build in Unity.
At one point I saw the below exception, one of those when you try to access UI elements on a background thread, so it might just be that the event callbacks need to dispatch to the UI thread when accessing UI elements.

An unhandled exception of type 'UnityEngine.UnityException' occurred in UnityEngineProxy.dll
get_isActiveAndEnabled can only be called from the main thread.
Constructors and field initializers will be executed from the loading thread when loading a scene.
Don't use this function in the constructor or field initializers, instead move initialization code to the Awake or Start function.

exception

Assertion failed on expression: 'm_FrameIndexGfxThread != m_FrameAddIndex'

I get the following errors on every frame when playing a scene in the editor
Assertion failed on expression: 'm_FrameIndexGfxThread != m_FrameAddIndex'
Assertion failed on expression: 'IsMatrixValid(matrix)'

this is with the "cameraparent" prefab from the spatial anchors sample project

target: UWP (Hololens)
unity: 2018.3.10

Activation of the Windows Store app failed with error 'Access is denied'.

I load the SampleHololens.sln solution in Visual Studio 2017 and it was built successively.
But when I start debugging, it has an error message as below which stop me from deploy the sample app to Hololens1, I followed the exact tutorial from GetStartFromHololens:
Activation of the Windows Store app 'd1c3b0c0-33f2-48b3-82f8-19844d285be0_0erf857dqbjaw!App' failed with error 'Access is denied'.

AnchorLocatedEvent Bug

If a watcher has an identifier that is not associated with the account, the anchorlocated event will never fire again even for other identifiers that may/may not be found

Can't get AccessToken

After I open the SharingServiceSample project, I find the SpatialAnchorsTokenService.cs file and configure out I need fill it with my credentials info as below:
image

When I get the AAD token successfully and try get the spatial service access token, there is a error response as below:

image
bad response:

{StatusCode: 500, ReasonPhrase: 'Internal Server Error', Version: 1.1, Content: System.Net.Http.HttpConnection+HttpConnectionResponseContent, Headers:
{
  Date: Mon, 04 Mar 2019 03:20:20 GMT
  MS-CV: u1xrmlrgwkSkBL2Fugk2IQ.0
  X-Content-Type-Options: nosniff
  Content-Length: 0
}}

How can I get the access token successfully?

Multiple anchor detection

It seems like if i try and create a watcher with more than 10 identifiers in it, the AnchorLocated event never fires. Using anything below 10 will work as intended. Is this just an arbitrary cap or is there something else to it?

Exception thrown when Holotoolkit is included in the project

When holotoolkit is added to the project, the application crashes at runtime when the spatial anchors service is started (cloudsession.Start())

Hololens output window in Visual Studio says:

The thread 0x1604 has exited with code 0 (0x0).
'ASA.exe' (Win32): Unloaded 'C:\Windows\System32\MinUser.dll'
'ASA.exe' (Win32): Unloaded 'C:\Windows\System32\shlwapi_onecore.dll'
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: Cn::XH at memory location 0x00FFE18C.
onecoreuap\windows\moderncore\inputv2\inputhost\components\cursor\client\cursorclient.cpp(43)\InputHost.dll!6ED3AB53: (caller: 6ED3ACCC) ReturnHr(1) tid(5cc) 87B20809 onecoreuap\windows\moderncore\inputv2\inputhost\components\cursor\client\cursorclient.cpp(75)\InputHost.dll!6ED3ACE3: (caller: 6ED095BD) ReturnHr(2) tid(5cc) 87B20809 wil(439)\Windows.Mirage.dll!6F46CB6F: (caller: 6F46C996) ReturnHr(1) tid(b90) 80070005 Access is denied.
'ASA.exe' (Win32): Unloaded 'C:\Windows\System32\ResourcePolicyClient.dll'
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
The thread 0x1138 has exited with code 0 (0x0).
The thread 0x2b4 has exited with code 0 (0x0).
onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(1) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(2) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(3) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(4) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(5) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(6) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(7) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(8) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(9) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(10) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(11) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(12) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(13) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(14) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(15) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(16) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(17) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(18) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(19) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(20) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(21) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(22) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(23) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(24) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(25) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(26) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(27) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(28) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(29) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(30) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(31) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(32) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(33) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(34) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(35) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(36) tid(bf4) 8685C003 onecoreuap\xbox\devices\api\winrt\pnpapiwrapper.cpp(385)\Windows.Gaming.Input.dll!716DF86B: (caller: 716E2723) ReturnHr(37) tid(bf4) 8685C003 Exception thrown at 0x7756F322 (KernelBase.dll) in ASA.exe: WinRT originate error - 0x80040111 : 'Windows.UI.WindowManagement.DisplayRegion'.
onecoreuap\drivers\mobilepc\sensors\convergence\api\winrt\public\internal\viewpositiontrackerinternal.h(94)\Windows.Devices.Sensors.dll!5A3433D0: (caller: 5A3423EF) Exception(1) tid(5cc) 80040111 ClassFactory cannot supply requested class
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: wil::ResultException at memory location 0x00FFDA88.
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: [rethrow] at memory location 0x00000000.
onecoreuap\drivers\mobilepc\sensors\convergence\api\winrt\public\internal\simpleorientation.cpp(127)\Windows.Devices.Sensors.dll!5A341AA7: (caller: 5A33B5FC) Exception(2) tid(5cc) 80070490 Element not found.
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: wil::ResultException at memory location 0x00FFDCD0.
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: [rethrow] at memory location 0x00000000.
onecoreuap\drivers\mobilepc\sensors\convergence\api\winrt\public\internal\sensorserver.cpp(46)\Windows.Devices.Sensors.dll!5A338561: (caller: 5A33591F) ReturnHr(1) tid(5cc) 80070490 Element not found.
onecoreuap\drivers\mobilepc\sensors\convergence\api\winrt\public\lib\simpleorientationsensor.cpp(160)\Windows.Devices.Sensors.dll!5A39B90D: (caller: 5A399E09) ReturnHr(2) tid(5cc) 80070490 Element not found.
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: Il2CppExceptionWrapper at memory location 0x01DBF5C8.
onecoreuap\enduser\nui\onecore\sapi\sapi\sr\srcloudpolicy.cpp(255)\sapi_onecore.dll!6467625A: (caller: 64676691) ReturnHr(1) tid(494) 80070005 Access is denied.
The thread 0xf64 has exited with code 0 (0x0).
The thread 0x4f8 has exited with code 0 (0x0).
The thread 0x1728 has exited with code 0 (0x0).
The thread 0xecc has exited with code 0 (0x0).
The thread 0x280 has exited with code 0 (0x0).
The thread 0xdbc has exited with code 0 (0x0).
The thread 0x13a0 has exited with code 0 (0x0).
The thread 0x101c has exited with code 0 (0x0).
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: Il2CppExceptionWrapper at memory location 0x01CBF154.
The thread 0x1724 has exited with code 0 (0x0).
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: Il2CppExceptionWrapper at memory location 0x01CBE408.
Exception thrown at 0x7756F322 in ASA.exe: Microsoft C++ exception: Il2CppExceptionWrapper at memory location 0x01CBF7C0.
ASA.exe has triggered a breakpoint.

Azure spatial anchors Sharing Service project is missing

I am following this tutorial:

https://docs.microsoft.com/en-gb/azure/spatial-anchors/tutorials/tutorial-share-anchors-across-devices

And I get this error in Visual Studio:

One or more projects in the solution were not loaded correctly.
Please see the Output Window for details.

I've downloaded the samples repository a few times to see if I'd done something to the original file, but no go.

In Visual Studio it tells me The project file was unloaded. I therefore don't get the option to Publish.

Any guidance please? I'm new to working with spatial anchors and Hololens. Thank you!

[iOS] Anchors load in wrong location when app/ARKitsession is restarted

I've implemented Azure Anchors based on the examples and concepts in the docs:

private void OnAnchorLocated(object sender, AnchorLocatedEventArgs args)
    {
        switch (args.Status)
        {
            case LocateAnchorStatus.Located:
                Debug.Log("anchor found, adding to the scene");
                textFeedback.Feedback("anchor found, adding to the scene");
                CloudSpatialAnchor foundAnchor = args.Anchor;

                Pose anchorPose = Pose.identity;
#if UNITY_ANDROID || UNITY_IOS
                anchorPose = foundAnchor.GetAnchorPose();
#endif
                SpawnNewAnchoredObject(anchorPose.position, anchorPose.rotation, foundAnchor);
                break;

            case LocateAnchorStatus.AlreadyTracked:
                // This anchor has already been reported and is being tracked
                Debug.Log("This anchor has already been reported and is being tracked");
                break;

            case LocateAnchorStatus.NotLocatedAnchorDoesNotExist:
                // The anchor was deleted or never exited in the first place
                // Drop it, or show UI to ask user to anchor the content anew
                Debug.Log("Drop it, or show UI to ask user to anchor the content anew");
                break;

            case LocateAnchorStatus.NotLocated:
                // The anchor hasn't been found given the location data
                // The user might in the wrong location, or maybe more data will help
                // Show UI to tell user to keep looking around
                Debug.Log("Not found yet! Keep looking around");
                break;
        }

        GameObject SpawnNewAnchoredObject(Vector3 worldPos, Quaternion worldRot, CloudSpatialAnchor cloudSpatialAnchor)
        {
            GameObject newGameObject = GameObject.Instantiate(anchorPrefab, worldPos, worldRot);
            spawnedAnchors.Add(newGameObject);
            return newGameObject;
        }
    }

To me it looks like found anchors are spawned relative to the world origin.
So let's say I save an anchor
I restart the app while holding my phone in the same physical location as when I started it the first time, then the anchor spawns in roughly the same place

However, when I start the app in a different physical location, move to the area where I expect the anchor, the anchor get's loaded successfully, then the location is completely wrong.

Maybe GetAnchorPose() is broken?

Unity 2019.1.5
XCode 12.x
running on iOS12.3.1
Using the latest (deprecated!) UnityARKitPlugin.

Unity ARFoundation -- Setting (CloudAnchorSession.Session =ARSession.subsystem.nativePtr) crashes on iOS

We're working on an ARFoundation integration.

On Android- we're still working to get progress updates, but everything is successfully initialized. We construct a new CloudAnchorSession and assign the native session pointer from ARFoundation's ARSession class. So far so good! On iOS, however, setting the session to our ARSession.subsystem.nativePtr crashes with no exceptions or logs, right when it hits the CheckStatus native plugin handler. Pointer isn't null.

Given how we're building our app and sharing planes across devices, ARFoundation means not having to code everything twice for iOS and Android, and it's kinda the only way forward. It's also hugely desired by the entire Unity AR community, so figuring this out ASAP would really help with adoption :)

Something I noticed -- using the ARKit/Core packages from download crashes ARFoundation (it's expecting the packages from Unity Package Manager), while using the ARKit/Core packages from the Unity Package Manager just might not be compatible with the Azure Spatial Anchors.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.