Delete data with where clause in Android

I need to remove data from a table that has some common data like delete all rows from a table where the field age is 25. I found a way in iOS API using removeAll method and the where clause, but I could not find anything equivalent in Android API.

Is there a way to do that?

Hey Guilherme

Unfortunately there’s no way to do it in Android. Bulk deletion is available for REST. Here are the docs. Please take a look at Bulk delete section.

Regards Anton