반응형

Issue Tracking 23

[JavaScript] GetUserMedia using Chrome with localhost without HTTPS

노마드 코더님의 WebRTC를 이용한 줌 클론코딩을 공부하던 중 localhost가 아닌 내 private ip를 이용해 LAN환경에서 실습을 해보고 싶어 나의 private IP로 접근 했더니 GetUserMedia 함수에서 문제가 발생했다. 아무래도 내 컴퓨터의 카메라에 접근해 영상 데이터를 가져오는 부분이다 민감한 데이터라 HTTPS를 사용하지 않으면 안되는 모양 그래도 실습을 재밌게 하고 싶어 다른 방법이 없을까 찾아보던 중 chrome에서 설정 값을 바꿔주면 되는 것을 발견 하였다. - Chrome에서 아래 url로 접근한다 chrome://flags/#unsafely-treat-insecure-origin-as-secure 그러면 위와 같이 Insecure origins treated as s..

Issue Tracking 2021.09.15

[Android Issue] Error Key was created with errors: 경고: 다른 저장소 및 키 비밀번호는 PKCS12 KeyStores에 대해 지원되지 않습니다.

안드로이드 앱을 Signed Released 로 올리려고 KeyStore를 만드려고 하는데 다음과 같은 에러가 발생하였다. 해당 에러뒤 바로 다음으로 Error 경고: 다른 저장소 및 키 비밀번호는 PKCS12 KeyStores에 대해 지원되지 않습니다. 사용자가 지정한 -keypass 값을 무시하는 중입니다. 라는 문구의 에러가 발생 여기저기 구글링하여 해결방법을 찾아보려 했으나 마땅한 해결방법 찾기가 쉽지 않았는데 나의 경우 KeyStore의 비밀번호와 Key의 비밀번호가 달라서였다. 2개의 비밀번호를 같게 해주어야 하는데 그걸 모르고 다르게 해서 발생 했던 문제였다. 같게 해주니 아무 문제 없이 잘 keystore가 생성되었습니다.

Issue Tracking 2021.09.08

[Unity Issue] mainTemplate.gradle file is using the old aaptOptions noCompress property definition which does not include types defined by unityStreamingAssets constant.

Unity 버전을 올리고 Android로 Build하는 와중 아래와 같은 이슈가 발생하였다. mainTemplate.gradle file is using the old aaptOptions noCompress property definition which does not include types defined by unityStreamingAssets constant. launcherTemplate.gradle file is using the old aaptOptions noCompress property definition which does not include types defined by unityStreamingAssets constant. 이슈는 말 그대로 noCompress Property라..

Issue Tracking 2021.09.07