Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have decided to develop my first app, it will essentially be an app for tracking your jogging times. You will create a "journy",name it,give the distance etc.You can create multiple journys. And in the journeys you will run a stopwatch and it will store your time when finished. You will be able to look at your current week and months average time. And each time you submit a time you will be told your time and whether you are improving or not,km/h etc.

Hopefully i would like all your times displayed in a certain way. Once you have created your journey,you should be able to click it and view a calender of current and previous months,with the times you ran under the days you ran them.

I am still thinking about the actual design of all these features.

But I have some questions for anyone here experienced in android development:

  1. What in your opinion, is the best forum/resource available for android development?

  2. Android versions.The phone i will be getting and therefore doing the initial testing on will be 2.3 gingerbread. Should i be developing for a lower version android to ensure compatability on more phones? Will developing for a lower version limit the things I can do code wise?

And any further advice you have for taking on my first project I would appreciate :)

share|improve this question
1  
Stackoverflow is intended as a forum for getting peer assistance on actual code, not really a venue for a hypothetical survey. Don't let that discourage you though, please come back when you have a technical question. Good luck! – Sam Apr 25 '12 at 21:15
*journey Sorry, it just bugged me. – Hassan Apr 25 '12 at 21:16
1  
This isn't really a great question for the SO model. Regardless, before you do anything else build the API demos app from the SDK samples, play with it and think about what pieces there solve parts of your problem, then look at their code and learn. – Chris Stratton Apr 25 '12 at 21:27

closed as not constructive by Robert Harvey Apr 26 '12 at 23:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

  1. Best resource for Android development: the official site.
  2. Ideally you would test on a number of devices, but if cost is a problem you should at least test on a number of emulator configurations. Yes, developing for a lower version will limit the APIs that you can use. Usually that's not a problem though.
share|improve this answer

The phone i will be getting and therefore doing the initial testing on will be 2.3 gingerbread.Should i be developing for a lower version android to ensure compatability on more phones?

2.3 or even better 2.2 is a good choice if you want your app to run on almost every device. See http://developer.android.com/resources/dashboard/platform-versions.html But it is likely that 2.2 is dead in a year from now

Will developing for a lower version limit the things i can do code wise?

Yes and No but mostly Yes. New versions introduce new APIs but may also remove some. You can get the details e.g. here. If you develop for 3.0+ exclusively you have a lot of new and helpful features like the ActionBar / Fragments / Loaders natively. You can however use those features via compatibility libraries / 3rd party replacements.

And any further advice you have for taking on my first project I would appreciate :)

Learn Java, it helps a lot. Android is just a Java API.

share|improve this answer
Thanks for those links:)I did not know there would be 3rd party libraries for features in certain versions that is a help:)Ha i am in the process of learning java,got two semesters of it done – Daniel Apr 25 '12 at 21:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.