I have made an application in which i am using more resources images ,video’s ,text files which is in my assets folder of application & i am accessing these resources at run time
through sqlight database.The application is offline application.
now suppose my application is using by many users all over world.
Now the things I wants is that : I wants to maintain my own cloud server Or my server ,so that when i put new resources on server (I mean new images , video’s etc.) then these
resources should be automatically update on user’s device’s who is using the application(when ever user’s are connecting through internet).
I don’t wants to create new version of my application because i am updating resources.
I am new in android development please suggest.How to make , manage & maintain the server side functionality which will fulfill my need.
if the things r not clear please let me know.
Regards
Anupam mishra
Firstly, you say that your files are in the assets folder, which means that they are bundled with the apk and are read only. Therefore, it is not possible to write data to this part of your app, and hence you cannot update it.
Here’s what I would recommend: