I'm developing a word-building game (similar to scrabble) that takes a user's input and checks whether it is a valid word or not. First, I thought of using an offline dictionary database with SQLite
.
But later I realized that there's a built-in dictionary (that predicts the words that are being entered in the text fields).
Is there any way that I can use this built-in dictionary to validate words entered in my app?