본문 바로가기

모바일/CORDOVA36

카카오톡 공유하기 안드로이드 앱서명 https://developers.kakao.com/docs/android#%ED%82%A4%ED%95%B4%EC%8B%9C-%EB%93%B1%EB%A1%9D 1. OPENSSL 설치https://www.openssl.org/ LTS버전 설치Win64OpenSSL-1_0_2o.exe 설치후 환경변수 설정 적용되었는지 확인openssl version https://developers.kakao.com/docs/android#%ED%82%A4%ED%95%B4%EC%8B%9C-%EB%93%B1%EB%A1%9D 디버그용 생성keytool -exportcert -alias androiddebugkey -keystore -storepass android -keypass android | openssl sha1 -b.. 2018. 3. 29.
바로 전화걸기 PhoneGap-PhoneDialer https://github.com/peutetre/PhoneGap-PhoneDialer 해당 버튼 클릭시 바로 전화걸기로 넘어감 Error return by the plugin : ["feature","empty"] phonedialer.dial( "2125551212", function(err) { if (err == "empty") alert("Unknown phone number"); else alert("Dialer Error:" + err); }, function(success) { alert('Dialing succeeded'); } ); 2018. 3. 29.
signatures do not match the previously installed version https://stackoverflow.com/questions/31489567/manually-installing-an-updated-apk-fails-with-signatures-do-not-match-the-previ (node:47313) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: adb: Command failed with exit code 1 Error output:adb: failed to install /Users/----/cordova/----/platforms/android/build/outputs/apk/debug/android-debug.apk: Failure [INST.. 2018. 3. 26.
OEM USB 드라이버 https://developer.android.com/studio/run/oem-usb.html 맥에서 LG폰 구동을 위해 해당 드라이버 설치 http://www.lg.com/us/support/software-firmware-drivers 2018. 3. 26.
CORDOVA 네이버지도 API URL설정 테스트용 로컬 에뮬http:/localhost/안드로이드file:///android_asset/www/index.html아이폰file:///var/containers/Bundle/Application/ 2018. 3. 21.
FCM -2018-03-20기준 cordova버전을 전부 업데이트후 fcm을 추가하니 추가가 되지 않았다.똑같은 문제를 물어본사람도 있지만 답변은 없다. https://stackoverflow.com/questions/48225748/ionic-cordova-fcm-notifications-error-with-firebase - 이쪽에 내용이 올라오고있는거같은데 해결되면 최신버전으로 업그레이드를 해본다.https://github.com/fechanique/cordova-plugin-fcm/issues/438 FCM플러그인 개발이 븅신같아서 https://github.com/fechanique/cordova-plugin-fcm/issues/435 npm uninstall -g cordova npm install -g cordova@7.1.. 2018. 3. 20.
모바일앱 개발 프레임워크 framework7 http://framework7.io/ framework가 1.6대 버전으로 개발했었는데2점대 버전이 나왔다. 라우터부분이 엄청 바뀐거같은데처음 익히는데는좀 짜증났는데 훨씬 개선된거같다. 새로운 프로젝트에 들어가서 다른프레임워크를 찾아봤으나 아직 딱히 쉽게 쓸만한게 없는거같다. 그나마 아이오닉인데 러닝시간이 길거같아서 패스.. 2018. 3. 16.
Error: Cannot read property 'replace' of undefined npm install -g ios-sim시뮬레이터 모듈 설치하라고해서 설치했지만 해결되지 않았다생각해보니 위의 내용은 아이폰 시뮬레이터였던거같은데 결론 : 에뮬레이터를 직접 지정해준다 cordova run android --target 에뮬레이터이름을 ANDROID로 설정했으면cordova run android --target ANDROID명령어를 이용한다 2017. 12. 13.
Error: Cannot read property 'semver' of null This is due using an emulator with an unstable Developer Preview API version. You probably have a device using API 27 (Android 8.1). Open your AVD, remove that device and re-run.It's also useful to use --target when launching the emulator if you have more than one. To get a list of available names to use, call the emulate command with --list 결론 : 에뮬레이터 생성시 타겟을 8.1버전으로 생성했다하위 API레벨로 변경한다. 2017. 12. 13.