최근 Android Studio를 3.6으로 버전 업하면서 기존에 작업한 소스의 AndroidManifest.xml의 android:screenOrientation="portrait" 설정에서 빨간줄이 생겼다.(물론 빌드배포에선 전혀 문제가 나지 않았다.)
내용은 아래 스크린샷과 같다. 요약하면, 현재 지정한 'portrait' 속성 대신에 'unspecified'나 'fullSensor' 사용을 권고하는 내용이였다.
해결 방법은 간단하다. ignore 속성에 "LockedOrientationActivity" 를 추가하면 된다.
tools:ignore="LockedOrientationActivity"
참고링크:
https://developer.android.com/topic/arc/window-management
https://developer.android.com/guide/topics/manifest/activity-element#screen