Reputation: 19214
I am using Android SQLITE FTS, but don't know which version is it?
How can I find if Android supports SQLITE FTS4 or FTS5?
I need to use custom stemming functions, which is only supported in FTS5.
Upvotes: 1
Views: 465
Reputation: 180260
The compilation options for the SQLite library shipped with an Android can be chosen by the manufacturer when building the Android framework. And "can be chosen" means that nobody bothers to do so, so you always get the default, FTS4.
If you need anything else, you have to compile your own copy of the SQLite library with the NDK.
Upvotes: 1