cordova-plugin-ionic-webview 라는 플러그인을 사용하여 Live Reload 기능을 활성화할 수 있습니다.
cordova plugin add cordova-plugin-ionic-webview
cordova run android -- --livereload
<script>
// process the confirmation dialog result
function onConfirm(button) {
alert('You selected button ' + button);
}
// Show a custom confirmation dialog
//
function showConfirm() {
navigator.notification.confirm( 'You are the winner!', // message
onConfirm, // callback to invoke with index of button pressed
'Game Over', // title
'Restart,Exit' // buttonLabels
);
}
document.addEventListener('deviceready', function (e) {
showConfirm();
}, false);
</script>
$env:JAVA_HOME="C:\Program Files\jdk-11"
cordova run android
입력PS C:\gwakProj> cordova platform add browser
C:\gwakProj> cordova run browser --live-reload
cordova platform add android
cordova build android
// 애뮬레이터 실행
cordova emulate android
// 안드로이드 실행
cordova run android