你好,我正在做一个react-native应用,当我试图将安卓屏幕的orietnation完全设置为纵向时,它不工作,这里是项目规格。
RNNKotlinVersion = "1.6.0"
buildToolsVersion = "33.0.0"
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
这里是我在AndroidManifest.xml中的代码。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
<application
tools:ignore="LockedOrientationActivity"
<activity
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
这段代码有什么问题?