I have a demand where I need to import a JSON
file with 65k of records for my Android
app, after calling the URL of my REST
service the app starts importing the data however crashes after some time, I would like to know the best way to work with large volumes of data in mobile applications.
Some points:
- Would I have to split this file?
Today it looks like this:
[{"codigoTabela":0,"codigoProduto":"623261","vendaAtual":83.4012,"vendaOferta":0.0000,"dataInicioOferta":"Jan 1, 1900","dataFimOferta":"Jan 1, 1900","totalRegistros":62314},
Can you optimize this template?
Note: This app works normally with smaller data volume.