• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How hard would this App to code?

Hey,
I want to create a simple app, which reminds you to cancle subscriptions.
So my app should be like this:

You have a "Home" Button in the App where all your Subscriptions and their due dates are listed
(all manual added by you)
And you have a "Add" page where you can add your subscription with the following terms:

Name:
Cancle Date:

Nothing more, and all your added subsriptions should be listed on the "Home" Page.
Now, if its one day before the "cancle-date" of your subscriptions, the app should send you
a Push Notification like this: Don't forget to cancle <NAME> at the <cancle_date>.

Anyone here can tell me how hard this App will be for a complete newbie? And Should I create
this app in HTML/Javascript at my PC or in Android Studios as complete App?

Best Regards,
Lushen4800 <3
 
I'm not an Android coder but I did database development for years. That should be a piece of cake once you know the syntax.
 
Sorry, English language idiom. It should be easy to program as the functionality only include 5 processes:
  • Collect the data
  • Save the data to a database
  • Read the data from the database
  • present the data in a list
  • raise notifications when a subscription is close
I realize there will also be some data integrity checks for the data input and whatnot, but it sounds like a pretty simple app to me.
 
I agree with @Unforgiven, this is a relatively straightforward app to write. Some database schema design required. Fairly simple UI. It's an excellent project for a beginner Android programmer.
 
Back
Top Bottom