// #ifdef APP
var arcface = uni.requireNativePlugin("wrs-arcfacefree");
// #endif
var options = {};
options.appid = "xx";
switch (uni.getSystemInfoSync().platform) {
case 'android':
options.sdkkey = 'xx';
break;
// case 'ios':
// options.sdkkey = 'EnkaNajZEeGrNJ2n3ZJ1QESStanerJvEi4aUvC1eFNoc';
// break;
default:
break;
}
// switch (uni.getSystemInfoSync().platform) {
// case 'android':
// arcface.checkPermission((resp) => {
// console.log("授权结果:" + JSON.stringify(resp));
// });
// break;
// case 'ios':
// arcface.checkVideoPermission((resp) => {
// console.log("授权结果:" + JSON.stringify(resp));
// });
// break;
// }
arcface.activeEngine(options, (resp) => {
if (resp.result) {
console.log("激活成功");
} else {
console.log("激活失败");
}
console.log(resp)
// uni.showToast({
// title: JSON.stringify(resp),
// duration: 2000
// });
//this.showMsg("引擎激活结果:" + JSON.stringify(resp))
});
arcface.setVideoAngle({
videoAngle: "all" // 0:仅检测0度 90:仅检测90度 180:仅检测180度 270:仅检测270度 all:检测0、90、270、180全角度
});
试用版 有回调
if (resp.result) {
console.log("激活成功");
} else {
console.log("激活失败");
}
购买云打包没有回调