Are there any Android tools that help create content providers?

I see that there are many possibilities for ORM tools: Any good ORM tools for Android development?

But can any of them help you quickly create content providers?

If not, what tools exist?

+4
source share
3 answers

you can also watch CPOrm on github: https://github.com/Wackymax/CPOrm

He will create a database and content provider for you and process the entire boiler plate code for general database operations through the content provider.

+2
source

Try MOTODEV Studio for Android.It has a database management function to conveniently view and edit SQLite databases on emulated devices.

0
source

You might want to look at this project: https://github.com/groupme/ProviderOne It claims to be able to generate "everything you need" only from a DB file

0
source

Source: https://habr.com/ru/post/1315193/


All Articles