 |
10-25-2008, 09:07 AM
|
#1 (permalink)
|
Join Date: Oct 2008
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
Source code for android.jar
As a long time java developer who frequently works with open source, I'm used to having the java source for libraries available for reference within eclipse. If you work on android with the Eclipse plugin you probably found there is no source code for android libraries. (If you browse to an android class, you get a rough decompiled view of it, but not very useful).
Since the source was released a few days ago I managed to locate all the necessary .java source for android.jar that comes with the SDK.
If you have Git installed, the following script should it. If someone can recommend a convenient place, I could upload the premade android-src.jar. Now once you have it, you have to remove the built-in "Android Library" classpath container from your project. Then manually add the android.jar file, and you can then associate android-src.jar with it. Then you have source code at your fingertips for all of the android API. =D
#!/bin/sh
git-clone git://git.source.android.com/platform/frameworks/base android-api
cd android-api
git checkout android-1.0
jar cvf ../android-src.jar -C core/java .
jar uvf ../android-src.jar -C graphics/java .
jar uvf ../android-src.jar -C location/java .
jar uvf ../android-src.jar -C media/java .
jar uvf ../android-src.jar -C opengl/java .
jar uvf ../android-src.jar -C sax/java .
jar uvf ../android-src.jar -C services/java .
jar uvf ../android-src.jar -C telephony/java .
jar uvf ../android-src.jar -C wifi/java .
cd ..
|
|
|
11-04-2008, 11:57 PM
|
#2 (permalink)
|
Join Date: Nov 2008
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
Hi, I think what you have is exactly what i need, but i dont have any place for uploading it
Could you kindly upload it in a public place like www.4shared.com
Thanks in advance!
|
|
|
11-09-2008, 10:48 PM
|
#3 (permalink)
|
Join Date: Nov 2008
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
Thanks for your time..... Please send android.jar for Android SDK:1.0
Hi All,
I would like to view the source code of Android SDK default application. For that I need android.jar for android 1.0.
Could you please any one send it to me ?
Thanks for your time!!
Thanks Again!!
Yasmin
Quote:
Originally Posted by tweakt
As a long time java developer who frequently works with open source, I'm used to having the java source for libraries available for reference within eclipse. If you work on android with the Eclipse plugin you probably found there is no source code for android libraries. (If you browse to an android class, you get a rough decompiled view of it, but not very useful).
Since the source was released a few days ago I managed to locate all the necessary .java source for android.jar that comes with the SDK.
If you have Git installed, the following script should it. If someone can recommend a convenient place, I could upload the premade android-src.jar. Now once you have it, you have to remove the built-in "Android Library" classpath container from your project. Then manually add the android.jar file, and you can then associate android-src.jar with it. Then you have source code at your fingertips for all of the android API. =D
#!/bin/sh
git-clone git://git.source.android.com/platform/frameworks/base android-api
cd android-api
git checkout android-1.0
jar cvf ../android-src.jar -C core/java .
jar uvf ../android-src.jar -C graphics/java .
jar uvf ../android-src.jar -C location/java .
jar uvf ../android-src.jar -C media/java .
jar uvf ../android-src.jar -C opengl/java .
jar uvf ../android-src.jar -C sax/java .
jar uvf ../android-src.jar -C services/java .
jar uvf ../android-src.jar -C telephony/java .
jar uvf ../android-src.jar -C wifi/java .
cd ..
|
|
|
|
11-18-2008, 06:21 PM
|
#4 (permalink)
|
Join Date: Nov 2008
Posts: 2
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
If you are using Cygwin or GitWin the script should be changed to:
git clone git://git.source.android.com/platform/frameworks/base android-api
(no dash between git and clone) Other than that - thanks a lot, it worked just fine!
|
|
|
12-12-2008, 10:20 AM
|
#5 (permalink)
|
Join Date: Dec 2008
Location: Paris
Posts: 2
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
@tweakt
Thank you, it will speed up my dev a lot !
|
|
|
12-14-2008, 03:32 PM
|
#6 (permalink)
|
Join Date: Dec 2008
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
In case anyone is still interested in the packaged source, let me know where you want it. It's not that much of a hassle and if I can do it, anyone can. This said, I'm still happy to provide it just to contribute something and help a lazy developer.
Cheers
Martin
|
|
|
02-19-2009, 08:41 AM
|
#8 (permalink)
|
Join Date: Feb 2009
Posts: 2
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
Quote:
Originally Posted by NimoTh
In case anyone is still interested in the packaged source, let me know where you want it. It's not that much of a hassle and if I can do it, anyone can. This said, I'm still happy to provide it just to contribute something and help a lazy developer.
Cheers
Martin
|
Please provide the packaged source or precompiled android.jar as found in the latest build.
thank you
|
|
|
03-22-2009, 05:13 AM
|
#9 (permalink)
|
Join Date: Mar 2009
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
Corresponding Feature Request
There is a feature request at google code to improve this - see Issue 979. It includes a link to a page where you can download the latest sources as well as installing instructions.
Please vote for it.
Sebastian
|
|
|
Last edited by Sebastian Dietrich; 03-22-2009 at 05:16 AM.
Reason: linkfix
|
|
05-06-2009, 06:52 PM
|
#10 (permalink)
|
Join Date: May 2009
Posts: 9
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
android 1.5 sources packed
I packed the sources for android 1.5 (not a piece of cupcake ;-), and made the
archive temporarily available at http://rgruet.free.fr/public/android-1.5-cupcake-src.zip (21.6MB). Please mirror it elsewhere before my ISP kills me!
Create a directory sources/ inside your <android-SDK>/platforms/android-1.5/ directory, and unzip the archive there.
Richard
|
|
|
05-11-2009, 02:34 AM
|
#11 (permalink)
|
Join Date: May 2009
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
thanks. mirror of android-1.5-cupcake-src.zip at http://www.digginmobile.com/android.asp
|
|
|
Last edited by aramisw; 05-11-2009 at 02:34 AM.
|
|
05-27-2009, 12:40 PM
|
#12 (permalink)
|
Join Date: May 2009
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
OK, We have the source
OK, we have the source. Now if I want to modify something in the alarm application for example. I make the changes, now how to I build the android.jar again? Or if there is any other way to just build the app I need.
Thanks
|
|
|
12-11-2009, 02:18 PM
|
#14 (permalink)
|
|
I like this place!
Join Date: Nov 2009
Location: Florence, SC
Posts: 368
Device(s): Motorola Droid
Thanks: 0
Thanked 0 Times in 0 Posts
|
Sorry for bringing up an other thread, but can anybody do this for 2.0-eclair?
__________________
If you like MotoTorch LED, you could Donate With Paypal toward its continued development.
You can also buy the Donation version of MotoTorch LED from the Android Market.
Use Barcode Scanner or Shop Savvy to scan my avatar.
|
|
|
01-19-2010, 07:14 PM
|
#15 (permalink)
|
Join Date: Jan 2010
Location: Triangle, NC
Posts: 1
Device(s): T-Mobile G1
Thanks: 0
Thanked 0 Times in 0 Posts
|
I've repackaged source for 1.5, 1.6, and 2.1 along with a long article explaining how to get it and what to do with it. Hopefully this will be definitive until Google gives us a better way to attach source or just does it as part of the SDK download. Attaching Android platform source in Eclipse
Let me know if that doesn't work out for ya...
|
|
|
Last edited by sosiouxme; 01-19-2010 at 07:35 PM.
|
|
02-01-2010, 10:04 PM
|
#16 (permalink)
|
Join Date: Feb 2010
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
A great need for this thing, thank you
|
|
|
 |
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|