mVaccine 제품에 대한 필수 API 를 정의
vaccine 제품에 대한 3rd Party연동 기능을 제공한다.
Type | Description |
---|---|
PROCESSING | 진행 중 |
SUCCESS | 정상 처리됨 |
FAIL | 처리 중 문제가 발생함 |
Changed in version 2.0.0
Arguments
Arguments
Example:
M.plugin('3rd_vaccine_raon').init({
site_id:'',
license_key:'',
callback:function(result){
console.log(result);
}
});
Key (String) | Default Value | Value Type | Description |
---|---|---|---|
useBlackAppCheck | true | boolean | 루팅 검사를 실시하면 루팅 우회 앱 설치 여부까지 검사 |
scan_rooting |
scan_package
useDualEngine | true
true
true | boolean
boolean
boolean | 루팅 검사 |
| backgroundScan
rootingexitapp
show_update
show_license | true
true
true
true | boolean
boolean
boolean
boolean | mini 전용 |
| show_notify
show_toast
show_warning | true
true
true | boolean
boolean
boolean | mini 전용 |
| show_scan_ui | true | boolean | mini 전용 |
| show_about | true | boolean | mini 전용 |
| notifyAutoClear | true | boolean | mini 전용 |
| notifyClearable | true | boolean | mini 전용 |
| dualEngineBackground | true | boolean | full 전용 |
| backgroundJobForLongTime | false | boolean | full 전용 |
| dualEngineUpdateUrlType | 2 | int | DB 패턴 테스트 URL 사용 |
Changed in version 2.0.0
Arguments
Arguments
Example:
M.plugin('3rd_vaccine_raon').start({
mode:'mini',
extras: {
show_update : false,
show_toast : false,
},
callback:function(result){
console.log(result);
}
});
M.plugin('3rd_vaccine_raon').start({
mode:'full',
extras: {
show_update : false,
show_toast : false,
},
callback:function(result){
console.log(result);
}
});
Changed in version 2.0.0
Arguments
Arguments
Example:
M.plugin('3rd_vaccine_raon').stop({
callback:function(result){
console.log(result);
}
});
Changed in version 2.0.0
Arguments
Arguments
Example:
M.plugin('3rd_vaccine_raon').checkRooting({
callback:function(result){
console.log(result);
}
});
Changed in version 2.0.0
Arguments
Arguments
Example:
M.plugin('3rd_vaccine_raon').running({
callback:function(result){
console.log(result);
}
});