Recently I found this article where Google introduced Auto-fill IME integrations https://medium.com/androiddevelopers/whats-new-in-jetpack-1891d205e136#cbe2:~:text=Auto%2Dfill%20IME%20integrations
They mentioned that:
Android 11 introduces platform APIs for keyboards to display autofill suggestions from apps such as password managers. Jetpack’s Autofill API makes it easier for keyboards and autofill services to take advantage of this new feature via its InlineSuggestionUi class.
Now I need to populate some auto fill suggestions in the keyboard, but don't want to create a custom keyboard or service which to maintenance, because this functionality will be a really small part of the app.
Just wondering can I use this InlineSuggestionUi out of the box or there is some other easier solution to populate suggestion in the software keyboard?
Thank you in advance.