I am going to create coupons and offers application. And I update local coupons and shopping offers in my web server and android app can download coupons and offer banners from my web server. Since there is no web interface(to access by desktop browser.), I thought of two different methods to pass data to my app.
First one is I upload sqlite3 database with coupons and banners and android apps download it. Like here https://stackoverflow.com/a/1055566/982677
I upload XML file and android app will download XML file and read it via XML parser.
If there is another method please tell me.
Thank you!