Skip to content

Vuforia not available in argon4(android version) #89

@denisdautllari

Description

@denisdautllari

I've been testing a simple vuforia sample (i have used the code from https://docs.argonjs.io/tutorial/part4/ ) on argon4 android . I cannot initialize vuforia because the promise object returned by app.vuforia.isAvailable() remains in "pending" state . There are no errors or warnings .

app.vuforia.isAvailable().then(
//if promise is fulfilled
function (available) {
// vuforia not available on this platform
// in argon4 android this is never executed
if (!available) {
console.warn("vuforia not available on this platform.");
return;
}
else{
console.log("vuforia is available");
}
},
//if promise is rejected
function(reason) {
// rejection
// in argon4 android this is never executed
console.log(reason)
}
);
When i try the same app in argon4 IOS it works as it should .
I have used Samsung galaxy edge S6 and Samsung galaxy S5 for my tests.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions