I've been building my RN app directly from Expo (expo build:ios
/expo build:android
) without ejecting, without opening the app in Xcode or Android Studio.
To get KeyboardAwareScrollView
to work on Android I need to Set windowSoftInputMode to adjustPan in AndroidManifest.xml.
Is there a way I can do this without ejecting? (Keeping with my build-direct-from-expo workflow)
Ejecting has given me lots of errors in Xcode (fixable with a LOT of work), and I don't have any experience with Android development so I shudder to think what will happen when I open an ejected Android project.