Currently using Xamarin.Forms Version="4.8.0.1269"
The android SDK version is set to android:targetSdkVersion="29"
I implemented a custom keyboard for Android (found an example)
The custom keyboard is based on Android.InputMethodServices.KeyboardView
and Android.InputMethodServices.Keyboard
Since I targeted the sdk version to 29 I'm getting a warning that the Android.InputMethodServices.KeyboardView
is obsoleted in this platform.
The app works fine for the moment and the custom keyboard also works as expected.
When I tried to update to Xamarin.Forms Version="4.8.0.1687", the app crashed when the custom keyboard was about to appear.
My question is how to replace the Android.InputMethodServices.KeyboardView
and Android.InputMethodServices.Keyboard
?
Is there an example available for creating a custom keyboard for Android compatible with sdk 29?