목록전체 글 (4)
덕질을 위해 사는 개발자
문제 발생 안드로이드에서 지도가 떠야 하는데 지도가 안뜨면서 다음과 같은 error가 났다. D/mali_winsys: EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, EGLBoolean) returns 0x3000W/libEGL: EGLNativeWindowType 0x7278995010 disconnect failed 해결 방안 다음을 확인해보자! 1. KaKao Developers 사이트에서 네이티브 앱 키 확인 2. 위와 같이 libs, jniLibs 넣었는지 확인 https://apis.map.kakao.com/android/guide/ 에서 다운로드 할 수 있다..
문제 발생 git push 하고 난 후 gitignore에 빠뜨린 문장이 있었다. 해결 방법 1. git log로 되돌릴 commit 의 hash를 찾는다. 참고) git log 나가는 방법 :: q치기 2-1. reset git reset --hard [hash] git push -f orgin master
CSS 주석은 요소 내부에 배치 되며 다음으로 /* 시작하고 */ 으로 끝납니다. 예시 /* This is a single-line comment */ p { color: red; } Reference CSS Comments CSS Comments CSS Comments Comments are used to explain the code, and may help when you edit the source code at a later date. Comments are ignored by browsers. A CSS comment is placed inside the element, and starts with /* and ends with */: You can add comm www.w3schools.com