Fix for KeyboardAvoidingView on Android 15 (SDK 35) in Expo/React Native apps
npm install expo-android-keyboard-fixThis plugin resolves the issue by automatically injecting the necessary native Android code into your Expo app.
bash
npm install expo-android-keyboard-fix
or
yarn add expo-android-keyboard-fix`🛠️ Usage
Add the plugin to your app.json or app.config.js:
`json
{
"expo": {
"plugins": [
"expo-android-keyboard-fix"
]
}
}
`Then rebuild your Expo app:
`bash
npx expo prebuild --clean
or using EAS Build
eas build -p android
``