New method implementation of BaseSearchIndexProvider for dynamic index.

Implement the new method getDynamicRawDataToIndex.

Test: manual
Fixes: 143664054
Change-Id: I1cc68e6ef6a4e03d8dc0b00d422029627c955bdf
This commit is contained in:
Stanley Wang
2019-10-31 14:17:32 +08:00
parent 02bd28edbd
commit c2e4ae1c9c

View File

@@ -76,6 +76,11 @@ public class BaseSearchIndexProvider implements Indexable.SearchIndexProvider {
return null; return null;
} }
@Override
public List<SearchIndexableRaw> getDynamicRawDataToIndex(Context context, boolean enabled) {
return null;
}
@Override @Override
@CallSuper @CallSuper
public List<String> getNonIndexableKeys(Context context) { public List<String> getNonIndexableKeys(Context context) {