AndroidManifest에서 android:screenOrientation="portrait"를 사용하면
다음과 같은 에러 아닌 경고가 발생한다.
Expecting 'android:screenOrientation="unspecified"' or '"fullSensor"' for this activity so the user can use the application in any orientation and provide a great experience on Chrome OS devices.
나만 발생하는 에러인가 싶어서 다음의 주소에서 해결방법을 찾을 수 있었다.
나는 개발한 앱이 세로 모드만 지원하는 경우를 원하기에
AndroidManifest에서 최상단 <manifest> 속성에 다음과 같은 코드를 써서 해결할 수 있었다.
tools:ignore="LockedOrientationActivity"