본문 바로가기

개발53

유니티 에셋과 구독 플랜에서 궁금했던 것 정리 팀이 에셋을 공유해도 되나? - 라이센스에 따라 다르다. 스토어의 라이센스에서 Single Entity라고 되어있다면 팀원마다 구매해야한다. 출처 에셋 스토어에서 구매한 것을 유니티 없이 받을 수 없나? - 없다. 무조건 유니티로 받아야한다. 출처 에셋을 외주 작업을 할 때 사용해도 되나? - 고용 업체에서 에셋을 구매해야한다 출처 에셋 스토어에서 구매하고 다른 게임 엔진에서 사용해도 되나? - 된다 출처 유니티 구독 플랜 종류는? - Personal Edition : 회사 또는 개인의 전체 연 매출이 10만 달러 (USD) (약 1억 원) 미만일 경우 - Plus Edition : 회사 또는 개인의 전체 연 매출이 20만 달러 (USD) (약 2억 원) 미만일 경우 - Pro Edition : 회사 또.. 2021. 11. 21.
Flask의 make_response에서 TypeError: The view function did not return a valid response. The return type must be a string, dict, tuple, Response instance, or WSGI callable, but it was a list. from flask_marshmallow import Marshmallow ma = Marshmallow() class UserSchema(SQLAlchemyAutoSchema): class Meta: model = User users = [User(), User(), User(), ...] data = UserSchema().dump(users, many=True) res = make_response(data) File "C:\Users\...\flask\app.py", line 2127, in make_response raise TypeError( TypeError: The view function did not return a valid response. The return type must be .. 2021. 11. 3.
Your anti-virus program might be impacting your build performance. 라고 뜰 때 https://stackoverflow.com/questions/58297667/your-anti-virus-program-might-be-impacting-your-build-performance-android-studi Your anti-virus program might be impacting your build performance. Android Studio checked the following directories: Your anti-virus program might be impacting your build performance. Android Studio checked the following directories: C:\Users\user.name\.AndroidStudio3.5\sy.. 2021. 7. 11.
java.net.ProtocolException: unexpected end of stream 미리 결론: 서버가 HTTP/1.0으로 응답해 발생했던 문제 1.1로 변경해서 해결됨. Retrofit 사용중에 간헐적으로 오류가 발생했다. 검색해보면 1. Connection: close 헤더를 추가하라거나 2. OkHttpClient.Builder에서 retryOnConnectionFailure를 true로 변경하라거나 3. 에뮬레이터에서만 발생하는 오류라거나 4. 그냥 OkHttp 자체의 버그이거나 5. 혹은 서버의 문제 라는 글들을 볼 수 있는데 1-3까지로는 해결되는게 없다. 4를 확인하기 위해 새 프로젝트를 만들어 UrlConnection을 사용해서 테스트를 했는데 같은 문제가 발생했다. 로그에서 OkHttp를 볼 수 있었어서 OkHttp 문제가 아니라는 것이 확인된 것은 아니지만, 프레임워크.. 2021. 5. 7.