Cordova
-
if you worried about save the HTML canvas in mobile album, wbt11a Canvas2ImagePlugin is good solution! This plugin make your app possible to save the HTML Canvas in android & ios Album https://github.com/wbt11a/Canvas2ImagePlugin This is the result! Gool luck! #wbt11a #cordova #hybrid #app
[cordova canvas save] wbt11a Canvas2ImagePlugin is cool!if you worried about save the HTML canvas in mobile album, wbt11a Canvas2ImagePlugin is good solution! This plugin make your app possible to save the HTML Canvas in android & ios Album https://github.com/wbt11a/Canvas2ImagePlugin This is the result! Gool luck! #wbt11a #cordova #hybrid #app
2018.10.26 -
document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { window.open = cordova.InAppBrowser.open; var ref2 = cordova.InAppBrowser.open(encodeURI('http://ja.m.wikipedia.org/wiki/ハングル'), '_blank', 'location=yes'); }inappbrowser Cannot read property 'open' of undefined you have to write the code in document.addEventListener ... ! reference : https://stackoverflow.c..
[Cordova] inappbrowser Cannot read property 'open' of undefineddocument.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { window.open = cordova.InAppBrowser.open; var ref2 = cordova.InAppBrowser.open(encodeURI('http://ja.m.wikipedia.org/wiki/ハングル'), '_blank', 'location=yes'); }inappbrowser Cannot read property 'open' of undefined you have to write the code in document.addEventListener ... ! reference : https://stackoverflow.c..
2017.12.12 -
http://doctorson0309.tistory.com/177※위 포스팅과 이어저 작성되는 포스팅입니다. 아래와 같은 소스를 이용하면Cordova, index.html에서 다국어 처리를 할 수 있도록lang값을 받을 수 있습니다. Editorial by HTML5 UP var lang = request.getParameter('lang'); alert(lang); 도움이 되셨다면 '공감' 버튼 클릭, 부탁드려요 ^ㅁ^ 감사합니다. #cordova 다국어 #폰갭 다국어 #다국어
[Cordova] 폰갭, 다국어 처리 방안 제안 - 2, 프론트페이지http://doctorson0309.tistory.com/177※위 포스팅과 이어저 작성되는 포스팅입니다. 아래와 같은 소스를 이용하면Cordova, index.html에서 다국어 처리를 할 수 있도록lang값을 받을 수 있습니다. Editorial by HTML5 UP var lang = request.getParameter('lang'); alert(lang); 도움이 되셨다면 '공감' 버튼 클릭, 부탁드려요 ^ㅁ^ 감사합니다. #cordova 다국어 #폰갭 다국어 #다국어
2017.10.17 -
새 프로젝트 만들기이 시점에서 새 프로젝트를 만들 플랫폼 CLI 도구는 명령줄 인터페이스 또는 안 드 로이드 관련 셸 도구 집합 설명 사이 선택할 수 있습니다. 소스 코드 디렉토리 내 여기 CLI 접근이 이다: $ cordova create hello com.example.hello HelloWorld $ cd hello $ cordova platform add android $ cordova prepare # or "cordova build" 다음은 유닉스와 윈도우에 대 한 해당 하위 셸 도구 접근이입니다. $ /path/to/cordova-android/bin/create /path/to/new/hello com.example.hello HelloWorld C:\path\to\cordova-andro..
[하이브리드 앱] Cordova, 안드로이드 스튜디오에 import하는 방법새 프로젝트 만들기이 시점에서 새 프로젝트를 만들 플랫폼 CLI 도구는 명령줄 인터페이스 또는 안 드 로이드 관련 셸 도구 집합 설명 사이 선택할 수 있습니다. 소스 코드 디렉토리 내 여기 CLI 접근이 이다: $ cordova create hello com.example.hello HelloWorld $ cd hello $ cordova platform add android $ cordova prepare # or "cordova build" 다음은 유닉스와 윈도우에 대 한 해당 하위 셸 도구 접근이입니다. $ /path/to/cordova-android/bin/create /path/to/new/hello com.example.hello HelloWorld C:\path\to\cordova-andro..
2017.09.11 -
installation of a higher version of Cordova installed 1. Node js install(Cordova command-line runs on Node.js and is available on NPM.) URL : https://nodejs.org/en/ 2. type npm install -g cordova.(Open a command prompt or Terminal, and type npm install -g cordova) $ npm install -g cordova what is UUID?universally unique identifier, UUID Did you face an error?Refer to the link below. Reference : ..
[Hybrid App] 버전이 높아진, Cordova 제대로 설치하기, 2017년installation of a higher version of Cordova installed 1. Node js install(Cordova command-line runs on Node.js and is available on NPM.) URL : https://nodejs.org/en/ 2. type npm install -g cordova.(Open a command prompt or Terminal, and type npm install -g cordova) $ npm install -g cordova what is UUID?universally unique identifier, UUID Did you face an error?Refer to the link below. Reference : ..
2017.09.11 -
[Cordova] Apache Cordova localStoage 사용하기! Apache Cordova localStoage var storage = window.localStorage; var value = storage.getItem(key); // Pass a key name to get its value. storage.setItem(key, value) // Pass a key name and its value to add or update that key. storage.removeItem(key) // Pass a key name to remove that key from storage.출처 : https://cordova.apache.org/docs/en/latest/cordova/stor..
[Cordova] storage, localStorage 사용하기![Cordova] Apache Cordova localStoage 사용하기! Apache Cordova localStoage var storage = window.localStorage; var value = storage.getItem(key); // Pass a key name to get its value. storage.setItem(key, value) // Pass a key name and its value to add or update that key. storage.removeItem(key) // Pass a key name to remove that key from storage.출처 : https://cordova.apache.org/docs/en/latest/cordova/stor..
2017.02.05