Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 프래그먼트
- ubuntu
- centOS7
- 개발
- error
- it
- 안드로이드
- C
- java
- NGINX
- php
- 컴퓨터과학총론
- 개발자
- kakao
- 자바
- H2O
- javascript
- android
- unity
- Portfolio
- C lanuage
- MySQL
- techEmpower
- 번역
- mariadb
- caddy
- 구글
- 해석
- server
- 한글
Archives
- Today
- Total
개발모음집
only safe ( .) or non-null asserted ( .) calls are allowed on a nullable receiver of type error 본문
Android
only safe ( .) or non-null asserted ( .) calls are allowed on a nullable receiver of type error
void 2019. 4. 11. 10:00logDebug(TAG, chatMessage.text)
로그를 출력하는 중 chatMessage에서
only safe ( .) or non-null asserted ( .) calls are allowed on a nullable receiver of type chatMessage? 에러가 발생하였다.
처음엔 logDebug(TAG, chatMessage?.text) 와 같이 바꾸었지만 여전히 에러 발생
그래서
if (chatMessage != null) {
logDebug(TAG, chatMessage.text)
}
와 같이 널이 아닌 것을 확인하는 코드로 감싸주니 에러 해결
'Android' 카테고리의 다른 글
android device monitor deprecated, removed (0) | 2019.05.09 |
---|---|
android room runtime-error (0) | 2019.05.06 |
firebase database "setValue at ~ failed: DatabaseError: Permission denied" error (4) | 2019.04.08 |
android firebase 연동 테스트 (0) | 2019.04.04 |
android basic (0) | 2019.04.02 |