Ragunath Jawahar
Ragunath Jawahar

Reputation: 19723

Starting with the Android source code

I'd like to start looking into the Android source code. I'd like to start with the easiest place. Which is the easiest place to start with - any application / framework? Please suggest.

Upvotes: 0

Views: 1121

Answers (4)

DeRagan
DeRagan

Reputation: 22920

A simple google search would provide you appropriate results

Information on Android Open source website

http://source.android.com

Android Source code

https://android.googlesource.com

Upvotes: 3

axatrikx
axatrikx

Reputation: 396

I think it is better to start with any application first because that way you will know how it is applied.

Upvotes: 1

Julian Vogels
Julian Vogels

Reputation: 688

Start at the Android | Developer Website: http://developer.android.com/.

Under the "Resources Tab", you'll find useful example applications.

Make sure you installed Eclipse and the Eclipse Android Plugin. Than you ca create a new android project (File > New... > Other... > Android Project) in Eclipse and check "Create Project from exisiting Example". The Api Demo Application is great.

You should watch some Videos of Romain Guy, too, he's a coding genius.

Upvotes: -1

Ras
Ras

Reputation: 89

In the Resources section of the Android SDK site there are some tutorials that will walk you through some source code. Here is a link to the tutorial on creating a notepad application

Upvotes: 2

Related Questions