Android keyboard overlapping input fields, view doesn't scroll automatically
If you want to make changes to the AndroidManifest.xml your best bet would be to create a native module for your apps:
https://trigger.io/docs/current/api/native_modules/index.html
Specifically, you can make modifications to the manifest by creating a custom build step:
https://trigger.io/docs/current/api/native_modules/native_build_steps.html
i.e. something like:
[
{
"do": {
"android_add_to_activity_manifest_attributes": {
"attributes": {
"android:windowSoftInputMode": "adjustResize"
}
}
}
}
]