I'm using a C# library which gets the configuration usin an async pattern. This forces me to do some kind of stuff that I don't like and that's causing me some problems with my app.
So the question is: can I download my configuration just on the first app start and then store it somewhere or the configuration's content change everytime I connect to the API with my key?
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por Travis Bell
el 4 de octubre de 2013 a las 09:53
Hi StepTNT,
Yes, you certainly can and it's how I recommend you do it. As stated in documentation, the configuration can change from time to time (it has 3 times in 2 years) so storing it for a few weeks checking say, twice a month is more than enough.
Cheers.
Contestado por StepTNT
el 4 de octubre de 2013 a las 10:32
Great, thank you!