First app questions and what database to use

  • Replies:3
Millie Phillip
  • Forum posts: 2

Dec 17, 2017, 3:18:17 PM via Website

Hi everyone,

I am new to android development. I have taken courses in java, php/mysql, pl/sql, c++ and html5.

I want to build a macro calculator that has a database of ingredients and also stores favorite meals.

My questions are can I build a personal app to use on my phone without having to go through google play and paying the $25 developer’s fee.

What is the best database to use for andriod?

And can this be a native app with no need for internet connection?

Please advise

Reply
James Watson
  • Forum posts: 1,584

Dec 18, 2017, 1:38:19 AM via Website

  1. Of course, you can build an app without distributing to Play Store.
  2. SQLite.
  3. Yes, no problem.

Download size < 0.15 MB. But also accurate enough, ad-free & free.
The minimalist app available on Play Store: https://goo.gl/ws42fN
Blog: https://okblackcafe.blogspot.com Your 5-star is appreciated.

Millie Phillip

Reply
Millie Phillip
  • Forum posts: 2

Dec 18, 2017, 2:35:46 AM via Website

Thank you. Every where I read kept talking about putting the finished app up on google play and paying 25$.

Reply
irfan aloha
  • Forum posts: 10

Dec 18, 2017, 9:05:56 AM via Website

SQLite is a widely used database for android.Its very lightweight one and easy to use.And it is the one which has default support by android. You can also use Realm.Which is a new database not just for android. It claims to be a better replacement for SQLite with lesser data access time.

Reply