Shoaib Mushtaq

Results 46 comments of Shoaib Mushtaq

i had these issues with my project: 1. **Default activity not found** 2. xml intellisense was not working 3. kotlin standard functions were not detecting All my above issues were...

I have gone through the [research issue](https://github.com/google/android-fhir/issues/414) around FTS(Full-Text Search) and was first thinking about that We have a challenge that right now `ResourceEntity` table of the database is showing...

Moreover, [FTS-5](https://www.sqlite.org/fts5.html) is also available in Android to implement Full-text search with more built-in functions and enhanced features but FTS-5 has a limitation for Android API ≥ 24 so It...

@maimoonak, cc: @f-odhiambo @jingtang10 I explored the documentation around [FTS/Virtual tables](https://www.raywenderlich.com/14292824-full-text-search-in-room-tutorial-getting-started) and found out that There are two possibilities for making a virtual table 1. You can make the main...

> we could use https://www.sqlite.org/spellfix1.html Although I'm not sure if android allows creation of virtual tables. Yes, Android allows creation of virtual tables. But looks like, with Room DB, only...

> we could use https://www.sqlite.org/spellfix1.html Although I'm not sure if android allows creation of virtual tables. Also as per official documentation about spellfix [here](https://www.sqlite.org/spellfix1.html), it is not included in Standard...

As discussed over the call with @jingtang10 today, cc: @f-odhiambo For the following steps, - I will be doing a POC on using https://www.sqlite.org/spellfix1.html on the Android app and -...

I was doing a POC on https://www.sqlite.org/spellfix1.html to load it into the Android app and use it for spell correction to facilitate fuzzy search on SDK. So far, I am...

As discussed in the Android FHIR SDK developers call, @jingtang10 will also be looking for other alternative options available for fuzzy search + FTS. I will have to complete the...

I did POC on using the https://www.sqlite.org/spellfix1.html extension into an android app and I am able to run it on the android app and use the spellfix1 table as a...