QtCreator Android JDK Setting Errors
QtCreator IDE가 update되면서 Android JDK 설정에 에러가 나기 시작했다.
이는 Termal에서 java와 관련된 command(java, javac 등등)을 실행해도 동일하게 나오는 현상이다. 다음과 같은 설정을 통하여 해당 메시지를 없앨 수 있다.
unset _JAVA_OPTIONS
다음과 같이 QtCreator를 실행할 수 있는 shell file을 만든다.
unset _JAVA_OPTIONS; /opt/Qt/Tools/QtCreator/bin/qtcreator
QtCreator를 실행하는 아이콘의 command를 해당 shell file을 실행할 수 있도록 설정을 변경한다.
최종적으로 QtCreator를 실행하여 Edit - Preference - Devices - Android 탭을 확인해 보면 OK.