본문 바로가기

반응형

분류 전체보기

(123)
emotion - privacy policy Privacy Policy built the Emotion app as a Free app. This SERVICE is provided by at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy..
cordova 에서 deviceready 이벤트를 못 읽을 때 cordova는 빠르게 앱을 개발할 수 있다는 장점이 있지만 네이티브 적인 행동보다 웹행동에 가까운게 단점이다 앱을 종료하는 버튼이라던가 터치를 읽어오는 기능을 넣을려면 deviceready를 읽어와야한데 이것 때문에 꽤 오랫동안 고생했다 다음과 같이 하면 읽어올 수 있다 /index.html 위 코드처럼 cordova.js 가져와야한다
[React Native] pod install 오류 xcode 15로 업데이트 후에 프로젝트의 ios 폴더에서 pod install이 되지 않았다 루비 버전을 바꾸기도하고 cocoapods를 재설치 해야하기도 했는데 되지를 않았다 아예 환경설정을 처음부터 하기 위해 맥북을 초기화 하고 react-native 공식문서를 그대로 따라서 설치해봤다 그것도 두번이나 그래도 안되서 몇일을 검색하고 찾다가 해결하였다 방법은 아래와 같다 1. ruby를 brew로 설치 https://stackoverflow.com/questions/70291079/im-having-an-error-running-pod-install-after-having-ejected-an-expo-project?rq=2 I'm having an error running 'pod install' a..
[react-native] firebase - [ auth/unknown] An internal error has occurred. [chain validation failed] firebase 연동작업을 하는데 [ auth/unknown] An internal error has occurred. [chain validation failed] 오류가 뜬다 이거에 대한 해결을 위해 이것저것 찾아봤는데 이렇다할 방법이 없는 걸로 보인다 https://github.com/invertase/react-native-firebase/issues/2785 🔥 auth/unknown an internal error has occurred on android · Issue #2785 · invertase/react-native-firebase Issue When trying to login with email/password, I get an error on my Android Version 9..
ttf 확장자 css 폰트 적용하기 @font-face { font-family: 'omu'; font-weight: normal; font-style: normal; src: url('./../font/omu.ttf') format('ttf'); } html,bodt{ font-family:"omu"; } 보통 이렇게 집어넣으면 되지만 .ttf 는 적용이 안된다. 근데 아래처럼 바꾸면 된다 @font-face { font-family: 'omu'; font-weight: normal; font-style: normal; src: url('./../font/omu.ttf') format('truetype'); } format("ttf")가아니라 truetype으로 해야지 적용된다
cordova post(ajax) 전송시 겪은 문제 정리 급하게 앱제작을 해야해서 cordova를 사용했다. 편리하지만 native적인 기능구현이 어려운게 단점이다 html, css, javascript로만 작업하니 편했는데 post 전송이 안되었다. 공식문서와 chatGPT를 참고해도 해결하지 못했다가 겨우 해결했다 문제 정리해본다 1. 일단 전송 했던 js 파일은 이렇다 function sendGameDataToServer(ga_name, mb_id, score, time, level) { $.ajax({ url:'http:****', type:'POST', data:{ 'name':name, 'id':id, 'score':score, 'time':time, 'level':level }, dataType:'json', // crossDomain: true,..
개발자 M2 맥북에어 15인치 구매 후기 아이폰 앱 개발을 위해 정말정말 큰맘 먹고 맥북을 사야겠다 생각했다 돈이 너무 비싸 윈도우를 살려고 했는데 아이폰 앱 개발이라면 맥북말고는 선택지가 없었다 그래서 타협한게 맥북에어 15인치 m2 모델! 맥북프로는 너무 비싸서 에어로 선택했는데 걱정은 에뮬레이터 구동할때 버벅거리면 힘들것같아서 프로를 선택할까하다가 괜찮겠지 생각하고 맥북에어를 구매했다 그 와중에 16G 램에 + 516G 용량을 하니까 거의 240만원인데 여기서 30만원만 더주면 M2 맥북프로 14인치 기본형을 구입할 수 있었다 이 가격차이면 맥북프로??? 아반떼 사려다가 그랜저 사는 느낌이라 걍 240주고 샀다. 색상은 미드나이트 (미드나잇은 지문 많이 묻음) 주로 집에서 작업하지만, 집중이 안 되거나 작업이 부담스러울때는 카페에 자주 가..
리액트 네이티브 백터 아이콘 적용 먼저 react native vector icons을 설치해준다 npm install react-native-vector-icons 스마트폰에서 앱동작시 아이콘이 보여질 수 있도록 노드모듈에 있던 아이콘을 "android/app/src/main/assets/fonts"에 아이콘을 복사했다 그런데 'npx react-native run-android' 명령어를 입력했더만 error Failed to install the app. Command failed with exit code 1: gradlew.bat app:installDebug 오류가 노출되며 작동하지 않는다 좀더 읽어보니 옮긴 위치의 아이콘이 문제가 생겼다 그래서 해당 위치에 아이콘을 삭제후 'android/app/build.gradle'에 가..

반응형