Help with app and update

0

I want to create an app to display downloadable videos sorted by categories, but wanted to know how to add new videos without updating .apk , only updating download links and titles new videos added ...

    
asked by anonymous 13.06.2014 / 18:51

1 answer

1

A simple way is to use a SQLite database to store this list of videos. In this case, the application would read the data from the BD videos and display them, so you would only need to update the BD instead of the application as a whole. Here you can find SQLite material for Android . It's the simplest way I can imagine.

    
16.06.2014 / 08:55