-
Notifications
You must be signed in to change notification settings - Fork 73
Description
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.