🏫 Mobile
-
error : Could not find intellij-core.jar (com.android.tools.external.com-intellij:intellij-core:26.0.1).Searched in the following locations: https://jcenter.bintray.com/com/android/tools/external/com-intellij/intellij-core/26.0.1/intellij-core-26.0.1.jar --------- Solution :123456repositories { jcenter() maven { url "https://maven.google.com" }}Colored by Color Scriptercs Replace the code as sho..
Could not find intellij-core.jar (com.android.tools.external.com-intellij:intellij-core:26.0.1)error : Could not find intellij-core.jar (com.android.tools.external.com-intellij:intellij-core:26.0.1).Searched in the following locations: https://jcenter.bintray.com/com/android/tools/external/com-intellij/intellij-core/26.0.1/intellij-core-26.0.1.jar --------- Solution :123456repositories { jcenter() maven { url "https://maven.google.com" }}Colored by Color Scriptercs Replace the code as sho..
2018.10.25 -
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 -
만약에 레이아웃이 키보드위에 나타나고 + 스크롤이 안되는 경우?==> 약간의 꼼수, 를 주어서 전체 html의 height를 길~~~게 해버리면 된다.
하이브리드 앱에서 레이아웃 고정된 상태에서 모바일 키보드만 올리기만약에 레이아웃이 키보드위에 나타나고 + 스크롤이 안되는 경우?==> 약간의 꼼수, 를 주어서 전체 html의 height를 길~~~게 해버리면 된다.
2017.10.19 -
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 -
1. onCreate에서 다국어 페이지로 분기 처리하는 방법 public class MainActivity extends CordovaActivity{ @Override public void onCreate(Bundle savedInstanceState){ Locale systemLocale = getApplicationContext().getResources().getConfiguration().locale; String strDisplayCountry = systemLocale.getDisplayCountry(); // 대한민국 String strCountry = systemLocale.getCountry(); // KR String strLanguage = systemLocale.getLanguag..
[Cordova] 폰갭 다국어 처리 방안 제안, 하이브리드 앱1. onCreate에서 다국어 페이지로 분기 처리하는 방법 public class MainActivity extends CordovaActivity{ @Override public void onCreate(Bundle savedInstanceState){ Locale systemLocale = getApplicationContext().getResources().getConfiguration().locale; String strDisplayCountry = systemLocale.getDisplayCountry(); // 대한민국 String strCountry = systemLocale.getCountry(); // KR String strLanguage = systemLocale.getLanguag..
2017.10.17 -
Unable to install android app via usb debuggingProblemI know this is an old question but I am trying to install my app the very first time on Redmi note 4. Whenever i try to install it displays a dialog saying..Installation failed with message Failed to establish session. It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-insta..
[miui] installation failed with message failed to establish sessiomUnable to install android app via usb debuggingProblemI know this is an old question but I am trying to install my app the very first time on Redmi note 4. Whenever i try to install it displays a dialog saying..Installation failed with message Failed to establish session. It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-insta..
2017.09.12