 |
12-02-2008, 11:36 AM
|
#1 (permalink)
|
|
Developer
Join Date: Oct 2008
Location: Michigan
Posts: 344
Device(s):
|
Installing Eclipse and the Android SDK (Windows XP)
The first thing we need to do is download all of the needed files. First up, the Android SDK. You can download it from http://code.google.com/android/download.html
Now, let's download Java. Open up http://developers.sun.com/downloads in your browser. Click the expand button [+] for Java SE and click on Java SE (JDK) 6. It will take you to a page with more choices. We're going to want JDK 6 Update 10 with Java EE. Select Windows, and the Language you want, and you can finally download the JDK.
Last but not least, we're going to need Eclipse. Head over to http://www.eclipse.org/downloads/. The version we want is Eclipse IDE for Java Developers. The JEE version will work as well.
Now, we've downloaded just about everything we're going to need.
Let's go ahead and fire up the JDK installer.
Click next, agree to the license, next again (installing to C:\Sun\SDK), and we'll be prompted to set the admin password.
Enter a password and click next. Now we'll be presented with the installation options. You can leave these default and click next. Finally, it will let you install what we've chosen.
Click install now.
Time to wait. Grab something to drink (or eat).
At the end of the install we'll be prompted to sign in (if registered.) You can sign up if you'd like, or log in if you've already signed up. You can also skip the whole process if you want.
Tah dah, that's finished. You can click Finish, skipping starting the server (we won't need it.)
Now we can get started on the fun stuff. Create a new folder on your C: Drive (or whatever you use,) and name it android. Open up the Android SDK zip, and go into the main folder. Copy all of the files from the Android SDK zip into C:\android.
We've now got to set the all important Path variable. Right click on My Computer and click Advanced, Environmental Variables (or Start -> Settings -> Control Panel -> System -> Advanced -> Environmental Variables.)
In the Environmental Variables window, in the System Variables pane, scroll down to Path. Double click on it to edit it. Scroll all the way to the right side of the value, and add " ;c:\android\tools" (or the absolute path to your tools folder,) to the end of it, as shown below.
Click OK in all of the windows, and that's good to go.
Time for Eclipse. Create a new folder on your C: Drive (or whatever you use,) and name it eclipse. Just like before, open up the Eclipse zip, go into the main folder, and copy all of the files into C:\eclipse.
Almost there! Go ahead and make a shortcut to Eclipse on your Desktop (if you want.) Start up Eclipse.
It will prompt you to choose a workspace location.
This is where all of your project files will be stored. Set it where you want, and click OK.
Once Eclipse is started up, we can add the ADT plugin. In the menu, Help -> Software Updates.
Click on the Available Software tab at the top.
Click on Add Site. For the URL, we're going to use http://dl-ssl.google.com/android/eclipse.
Click OK. It may tell you that there was no repository found at https://dl-ssl.google.com/android/eclipse. That's fine, Click OK.
Expand the tree for http://dl-ssl.google.com/android/eclipse (note http, not https.) Click the checkbox next to the tree expander, and it will select all of the tools.
Click Install. Eclipse will go ahead and calculate the installation stuff it needs, and download the files.
Click finish, and it will install them.
Eclipse will prompt you to restart, click Yes. Eclipse will restart, and whalah, you're finished!
To run a quick test and make sure everything is working properly, go to File -> New -> Project. Expand Android, click on Android Project, and click Next.
Now we'll have to fill in our project information. Because this is a test run, we'll call the project testrun. For the package name, we'll use com.android.test. And last but not least, the activity name will be test.
Click Finish.
Eclipse will crunch on that for a second, and open the project in the left pane. Expand the main tree to see the file structure of a default new project. The last thing we need to do before we run our test application is set up a run configuration. In the menu, go to Run -> Run Configurations...
Double click on Android Application and it will create a new configuration. Give the configuration a name, and click browse for the project.
Choose your project, click OK. Now click Apply, then Run.
You'll notice the bottom pane switches over to Console. This will let you know what's going on with the emulator. After a few seconds, the emulator will start up.
Note that the first run will take *much* longer than usual to start up, as it's setting up the Android OS while it starts up for the first time. Depending on the specs of your computer, it can take anywhere from a few minutes to over half an hour.
After awhile, you'll arrive at the starting screen.
Click on Menu to unlock the screen. Usually, you'll get a few errors as things start up and can't be started.
I usually just click wait. In the console, you'll see it install, and then start up your application.
And with that, it's time for you to dive into the code and start making your application.
Last edited by devolio; 12-07-2008 at 05:45 AM.
Reason: Bolded important stuff
|
|
|
01-17-2009, 09:13 AM
|
#2 (permalink)
|
|
Junior Member
Join Date: Jan 2009
Posts: 1
Device(s):
|
error in installing android
Hi,
thats a nice presentation by you for installing android on windows xp. It is very helpful to me. after setting the path, when i tried to start eclipse a error window flashed on the screen saying that " a java Runtime environment or jdk must be available inorder to run eclipse. No java virtal machine was found after searching the following locations c:\eclipse\jre\bin\javaw.exe javaw.exe in your currebt path". I tried changing paths, but i did not succeed. I have been using windows xp 2002 version sevice pack 2. Please tell me solution. Thanks in advance.
|
|
|
02-28-2009, 05:48 AM
|
#3 (permalink)
|
|
Junior Member
Join Date: Feb 2009
Posts: 1
Device(s):
|
Hello!
Thank you very much for these explanations!
Denis
|
|
|
03-04-2009, 05:38 PM
|
#4 (permalink)
|
|
Junior Member
Join Date: Mar 2009
Posts: 9
Device(s):
|
software update
hi ,
when i add site http://dl-ssl.google.com/android/eclipse it said no repository and i clicked ok but when i tried to expand the tree of the site it said again there is no repository and it didn't expanded so please tell me what i have to do.
thanks
|
|
|
03-04-2009, 08:05 PM
|
#5 (permalink)
|
|
Developer
Join Date: Oct 2008
Location: Michigan
Posts: 344
Device(s):
|
Try changing the http to https and see if you have any better luck. It may just have been down for awhile.
|
|
|
03-05-2009, 08:50 PM
|
#6 (permalink)
|
|
Junior Member
Join Date: Mar 2009
Posts: 1
Device(s):
|
were do i get Eclipse from? thank you edit: evermind i found it lol
Last edited by vinnie215; 03-05-2009 at 09:10 PM.
|
|
|
03-05-2009, 09:02 PM
|
#7 (permalink)
|
|
Senior Mod Little Coat
Join Date: Nov 2008
Location: OC, California
Posts: 2,948
Device(s): G1, Cliq
|
Quote:
Originally Posted by vinnie215
were do i get Eclipse from? thank you
|
http://www.eclipse.org/downloads/
|
|
|
03-15-2009, 09:42 AM
|
#8 (permalink)
|
|
Junior Member
Join Date: Jan 2009
Posts: 17
Device(s):
|
Why do I keep getting
[2009-03-15 15:39:32 - testrun] getFileType got errno=22 on '(null)'
[2009-03-15 15:39:32 - testrun] ERROR: output file '(null)' exists but is not regular file
[2009-03-15 15:39:33 - testrun] getFileType got errno=22 on '(null)'
[2009-03-15 15:39:33 - testrun] ERROR: output file '(null)' exists but is not regular file
after I've created a new project? I'm using Eclipse 3.4.2.
__________________
HTC G1 Android Dev Phone 1 with JFv1.42 ADP1.1h and 8Gb microSDHC | Nokia N810 Internet Tablet with Android OS
|
|
|
04-29-2009, 09:56 PM
|
#9 (permalink)
|
|
Member
Join Date: Nov 2008
Posts: 40
Device(s):
|
Thanks for the tutorial. Haven't tried it yet, but it looks very thorough. I'm still in the Developer 100 stage of learning how to develop for Android (I was a java developer by trade for 5 years, a lifetime ago). I'm very sorry if these questions have already been answered elsewhere, I just didn't find them, but if you could post the URL, many much thanks. Way more basic questions than you address:
-do I need a separate piece of hardware than the basic T-Mobile G1 phone I already have (i.e. a "developer phone")?
-so if I get the Android SDK (I already use Eclipse), is it possible to get my in-progress application onto my phone for testing without putting it out in the Market? Or is the emulator designed to eliminate that need?
-what is the path to getting an application in the Market?
Thanks for any useful answers!
|
|
|
04-30-2009, 04:59 AM
|
#10 (permalink)
|
|
Senior Member
Join Date: Feb 2009
Location: London, UK
Posts: 605
Device(s): T-Mobile G1 (UK)
|
Quote:
Originally Posted by FortKnox
Thanks for the tutorial. Haven't tried it yet, but it looks very thorough. I'm still in the Developer 100 stage of learning how to develop for Android (I was a java developer by trade for 5 years, a lifetime ago). I'm very sorry if these questions have already been answered elsewhere, I just didn't find them, but if you could post the URL, many much thanks. Way more basic questions than you address:
-do I need a separate piece of hardware than the basic T-Mobile G1 phone I already have (i.e. a "developer phone")?
-so if I get the Android SDK (I already use Eclipse), is it possible to get my in-progress application onto my phone for testing without putting it out in the Market? Or is the emulator designed to eliminate that need?
-what is the path to getting an application in the Market?
Thanks for any useful answers!
|
To answer your questions...
- I'm learning to develop for android and I'm getting along fine with just the normal G1 and the SDK emulator..
- I think the emulator is meant to eliminate that need...although I doubt it's better than actually having a real phone to test it on...
- That...is something I don't know the answer to...I'm nowhere near creating a fully working app so I haven't bothered to look it up...but I'm assuming it would be through the Android Market website...(or maybe the Developers site)
|
|
|
04-30-2009, 05:30 AM
|
#11 (permalink)
|
|
Developer
Join Date: Oct 2008
Location: Michigan
Posts: 344
Device(s):
|
To answer your 2nd and 3rd questions...
Once you've got all the SDK stuff set up, you can pretty much plug in your phone, run your project, and Eclipse does the rest. If the phone is plugged in, it loads it up on your G1/ADP1, if not, it loads up in the emulator.
As for the market, you'll have to sign up for a developer account ($25), you'll have to confirm your bank/google checkout connected account (using a small deposit, a-la-paypal/other payment services, assuming you want to sell your apps) and then you'll be able to post your applications to the market. Instead of explaining in boring text how it all works, I took a few screenshots for you.
The main market menu. Lists all your submitted applications, the number of ratings, 'total' rating, total downloads and estimated installations with %, Price, and whether or not it's published. At the bottom right, you'll see the Upload application button...
Upon clicking that, you'll be able to choose the application to upload (signed with non-debug keys, of course,) which language it's localized for, it's title and description, type and category, price...
Whether or not to use copy protection ( supposedly stops non-root users from being able to copy your application,) Which countries you want to release your app or game in, your contact information, and the agreements you've to agree to.
That's about it. Develop your app, sign it for release, upload, and you're done. If you've got anymore questions, feel free to ask
Last edited by devolio; 04-30-2009 at 05:33 AM.
Reason: Clarified a few things
|
|
|
06-06-2009, 04:56 PM
|
#12 (permalink)
|
|
Junior Member
Join Date: Jun 2009
Posts: 16
Device(s):
|
omg - I am a very able Java developer - I had no idea the magic was SDK compatible with Java i.e you write Java code for the apps - that is outstanding - now I just need an idea for an app to develop!
|
|
|
08-29-2009, 05:35 AM
|
#13 (permalink)
|
|
Junior Member
Join Date: Sep 2008
Posts: 1
Device(s):
|
Big Thanks
Thanks a lot for the guide mate. Just got everything up and running and going to start coding.
By the way, do you know of any good start up sites or guides?
Thanks a lot
|
|
|
09-12-2009, 09:06 PM
|
#14 (permalink)
|
|
Senior Member
Join Date: Sep 2009
Location: Florida
Posts: 1,091
Device(s): Droid
|
Thank you so much! I was having a bit of trouble figuring out what to download and how to hook it all together on my 64 bit Vista, but your guide worked a treat!
Things changed slightly with the new version 7, yet I was able to figure out everything on the installation from your notes.
I ran into a few problems with the project and found these fixes for them.
Error starting project: "An SDK Target must be specified"
I found this error is due to me not setting the SDK location preference in Window / Preferences / Android. Once set, I had three available: Android 1.1, Android 1.5, and Google APIs.
Error running project:
- no classfiles specified
- Conversion to Dalvik format failed with error 1
This is a weird one. I found I had to highlight the project and hit F5 to clear this error. The project has a red x on it until you do F5 once for some reason.
Error 2 running project:
Android AVD Error. No compatible targets were found. Do you wish to a add (sic) new Android Virtual Device?
This gave me an option to create an Android Virtual Device, so I filled in the settings (below), clicked Create AVD, selected the one I just created, then clicked Finish.
Name: Android-1.5-Emulator
Target: Android 1.5 - 1.5
Skin: Default (HVGA)
Wow! Now I actually have an emulator up and running!!! I see Hello World!  I never could have done it without your help. I really appreciate the time you took to put all this together. I hope the notes I added there will help anyone who runs across the troubles I did.
|
|
|
09-13-2009, 03:31 PM
|
#15 (permalink)
|
|
Senior Member
Join Date: Sep 2009
Posts: 442
Device(s): HTC Hero
|
Using SDK r3 I am getting:
[2009-09-13 20:21:30 - test] no classfiles specified
[2009-09-13 20:21:30 - test] Conversion to Dalvik format failed with error 1
Halp meh.
Also.. anyone know a good place to learn Java?
EDIT: Ok got it booting. Now, good Java tutorial resource?
Last edited by G8D; 09-13-2009 at 03:47 PM.
|
|
|
11-11-2009, 01:28 AM
|
#16 (permalink)
|
|
Senior Member
Join Date: Oct 2009
Location: Florida, USA
Posts: 151
Device(s):
|
I only see update 17, not update 10, which takes me to update 8 not 6, of the SDK
I assume the later update is okay ?
Or should I be concerned about Firefox compatability?
Last edited by galt; 11-11-2009 at 01:34 AM.
|
|
|
11-12-2009, 01:45 PM
|
#17 (permalink)
|
|
Junior Member
Join Date: Nov 2009
Location: Bay Area - east bay.
Posts: 10
Device(s):
|
Quote:
Originally Posted by galt
I only see update 17, not update 10, which takes me to update 8 not 6, of the SDK
I assume the later update is okay ?
Or should I be concerned about Firefox compatability?
|
I'm getting the same crap. Yo! anyone gonna answer Galt?
|
|
|
11-12-2009, 01:55 PM
|
#18 (permalink)
|
|
Member
Join Date: Oct 2009
Posts: 32
Device(s):
|
Just take the newest.
|
|
|
11-23-2009, 07:52 PM
|
#19 (permalink)
|
|
Scooby Newbie
Join Date: Nov 2009
Location: MD/MI/NC
Posts: 28
Device(s):
|
I'm having a whole lot of trouble installing the ADT. No matter which method I try, it cant connect to the server.
EDIT: Getting a 404 error in my browser. It must be down.
EDIT: 3 days later, still down?? This is incredibly frustrating. Is anybody else having this problem?
Last edited by RossLH; 11-26-2009 at 04:56 PM.
|
|
|
11-29-2009, 04:26 PM
|
#20 (permalink)
|
|
Scooby Newbie
Join Date: Nov 2009
Location: MD/MI/NC
Posts: 28
Device(s):
|
Double posting so maybe someone will shine some light on this problem.....
Still getting nothing from http://dl-ssl.google.com/android/eclipse or https://dl-ssl.google.com/android/eclipse. When I try to add the repository in Eclipse, it wont connect. If I try entering either address in my web browser, I get a 404. Do I have the address right? Is there somewhere else I can find the tools?
I've been trying for a week now. I'd like to think I'm quite capable with Java/C++, and I really want to get started with developing, but Google is not making this easy for me.
|
|
|
11-30-2009, 05:36 PM
|
#21 (permalink)
|
|
Scooby Newbie
Join Date: Nov 2009
Location: MD/MI/NC
Posts: 28
Device(s):
|
Alright, played around with this some more, and finally got it to work. If anyone else is having the same problem, here's what I did (and it really was as simple as unchecking ONE box  ):
Download the ADT Plugin .zip file. In the 'Add Site' dialogue, click archive, select the .zip file, and hit OK. Uncheck the box that reads "Contact all update sites during install to find required software". If you dont, it'll just try to connect to the same site that you couldn't connect to before, and much like I did for a week, you'll be running in circles. When it comes to adding SDK components, I also found I had to enable 'force download from http' in the settings.
Regardless, it looks like everything should be up and running after I finish adding the SDK components. Thanks for the writeup! Despite a small road block, the writeup was very helpful.
|
|
|
12-08-2009, 04:55 PM
|
#22 (permalink)
|
|
Senior Member
Join Date: Nov 2009
Posts: 253
Device(s):
|
Quote:
Originally Posted by RossLH
Alright, played around with this some more, and finally got it to work. If anyone else is having the same problem, here's what I did (and it really was as simple as unchecking ONE box  ):
Download the ADT Plugin .zip file. In the 'Add Site' dialogue, click archive, select the .zip file, and hit OK. Uncheck the box that reads "Contact all update sites during install to find required software". If you dont, it'll just try to connect to the same site that you couldn't connect to before, and much like I did for a week, you'll be running in circles. When it comes to adding SDK components, I also found I had to enable 'force download from http' in the settings.
Regardless, it looks like everything should be up and running after I finish adding the SDK components. Thanks for the writeup! Despite a small road block, the writeup was very helpful. 
|
Thank you! I was looking for this.
|
|
|
12-09-2009, 04:18 PM
|
#23 (permalink)
|
|
Senior Member
Join Date: Nov 2009
Posts: 139
Device(s): Samsung Moment
|
It looks like the newest stuff in Eclipse for Android is very different than the steps outlined above. It's complaining about things that I don't have set up yet when I try to create an Android project. Anyone have an updated set of set-up steps?
|
|
|
12-18-2009, 01:18 AM
|
#24 (permalink)
|
|
Junior Member
Join Date: Dec 2009
Posts: 1
Device(s):
|
Unable to create new project
Hi,
I am not able to create new project as next button is disabled in "New Android Project" dialog in eclipse though mandatory values specified.
I think I have not selected the target build as the list is empty. How this list is populated?
Please suggest.
|
|
|
12-29-2009, 02:42 PM
|
#25 (permalink)
|
|
Junior Member
Join Date: Dec 2009
Posts: 1
Device(s):
|
Failed to fetch URL http://dl-ssl.google.com/android/repository/repository.xml, reason: Server redirected too many times (20)
Can anyone tell me how to get 'past' this????
It's highly annoying ...
I can hit that link directly but the Android SDK/ADVD Manager cannot???
Please help - anyone
|
|
|
01-02-2010, 10:08 AM
|
#26 (permalink)
|
|
Senior Member
Join Date: Nov 2009
Posts: 139
Device(s): Samsung Moment
|
Isn't there anyone who knows what they're doing who monitors this forum? Three questions over three weeks and change, and no responses.
|
|
|
01-02-2010, 02:42 PM
|
#27 (permalink)
|
|
Contributor
Join Date: Nov 2008
Location: Washington DC, USA
Posts: 7,223
Device(s): G1(2ea) 1 rooted, MT3G
|
Quote:
Originally Posted by fluharty13
Isn't there anyone who knows what they're doing who monitors this forum? Three questions over three weeks and change, and no responses. 
|
One or two things might be the reason:
Maybe no one visiting your thread knows the answer;
Maybe no one is visiting your thread;
There may be a limited number of devs that use the forum;
I would suggest also trying IRC #android-dev
__________________
Help Us By: Submitting FAQ's You have answered over and over! I will add them to OUR FAQ LIBRARY. Check out our FAQ's. ... Also Check out our Tag Search.
I am running 2 G1's & a MT3G : 1.) Legit=OTA 1.6 DRC43 // 2.) Rooted G1=CM's 4.2.14.1 (02/01/10)
3.) Recovery 1.4
Link for --> G1 Dream ROOT GUIDE ///// Link for --> UN-ROOT GUIDE
.
|
|
|
01-03-2010, 01:13 AM
|
#28 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 1
Device(s):
|
Quote:
Originally Posted by Forest Marie
|
after you get the error click close and then goto 'Settings' and check Force https://...
then save and apply
|
|
|
01-20-2010, 03:58 AM
|
#30 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 10
Device(s):
|
Well, Hi! I've decided to start developing for Android. Even though I don't have an Android phone and all...
It's all for fun and profit. A nice little 49p, 99p app.
Last edited by TheLupineOne; 01-20-2010 at 04:36 AM.
|
|
|
01-20-2010, 05:02 AM
|
#31 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 10
Device(s):
|
What should I set as the SDK Location in Window > Preferences > Android?
Last edited by TheLupineOne; 01-20-2010 at 03:45 PM.
Reason: Problem!
|
|
|
01-20-2010, 09:43 PM
|
#32 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 2
Device(s):
|
Quote:
Originally Posted by TheLupineOne
What should I set as the SDK Location in Window > Preferences > Android?
|
I have the same question--I downloaded the SDK through Eclipse and have no idea where it went...
|
|
|
01-21-2010, 04:49 AM
|
#33 (permalink)
|
|
Contributor
Join Date: Nov 2008
Location: Washington DC, USA
Posts: 7,223
Device(s): G1(2ea) 1 rooted, MT3G
|
Quote:
Originally Posted by champ1979
I have the same question--I downloaded the SDK through Eclipse and have no idea where it went...
|
Check the downloads folder...
__________________
Help Us By: Submitting FAQ's You have answered over and over! I will add them to OUR FAQ LIBRARY. Check out our FAQ's. ... Also Check out our Tag Search.
I am running 2 G1's & a MT3G : 1.) Legit=OTA 1.6 DRC43 // 2.) Rooted G1=CM's 4.2.14.1 (02/01/10)
3.) Recovery 1.4
Link for --> G1 Dream ROOT GUIDE ///// Link for --> UN-ROOT GUIDE
.
|
|
|
01-21-2010, 07:46 AM
|
#34 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 10
Device(s):
|
Well, I've copied the Android SDK into the C:\ drive (C:\android). It's all there, so what the pfargtl?
Look at this from the readme.
Quote:
In order to start developing applications, you must install at least one
version of the Android platform using the SDK Manager.
|
SDK Manager! I'll have to try use that. That could be the problem!
Last edited by TheLupineOne; 01-21-2010 at 07:52 AM.
|
|
|
01-21-2010, 12:49 PM
|
#35 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 1
Device(s):
|
Quote:
Originally Posted by routhusanny
Hi,
thats a nice presentation by you for installing android on windows xp. It is very helpful to me. after setting the path, when i tried to start eclipse a error window flashed on the screen saying that " a java Runtime environment or jdk must be available inorder to run eclipse. No java virtal machine was found after searching the following locations c:\eclipse\jre\bin\javaw.exe javaw.exe in your currebt path". I tried changing paths, but i did not succeed. I have been using windows xp 2002 version sevice pack 2. Please tell me solution. Thanks in advance.
|
I'm having the same problem with windows 7 64bit
|
|
|
01-22-2010, 05:30 PM
|
#36 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 10
Device(s):
|
Now at the bit just before the emulator.
I have one error.
The project cannot be built until build path errors are resolved
Location: Unknown.
WHY?
|
|
|
01-25-2010, 11:15 PM
|
#37 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 1
Device(s):
|
I'm not exactly using XP but I don't think it'll quite matter.
Anyway I'm having trouble downloading the Android SDK Platform. I've followed the tutorial on the android developer site and they say you use the AVD Manager to get it. However this is all I get:
Just a bunch of Add-on stuff, no Platform. What's going on? Am I using the wrong URL?
Edit: Nevermind.... I figured it out. Had to force the HTTPS thing in the Settings. Thought I already did it and didn't work, but tried again and seemed to work that time.
Last edited by saruman_w; 01-25-2010 at 11:19 PM.
|
|
|
01-26-2010, 04:51 PM
|
#38 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 12
Device(s):
|
i downloaded the u18 version of java ee sdk since i couldnt find u10 anywhere. it had a little different menus but was about the same. it is saying i have no targets when i go to create a project testrun. in preferences->android, i set the path to the android sdk and it found the tools folder but it doesnt show any sdk targets. any idea?
|
|
|
01-27-2010, 10:27 AM
|
#39 (permalink)
|
|
Junior Member
Join Date: Jan 2010
Posts: 12
Device(s):
|
Quote:
Originally Posted by hourang
i downloaded the u18 version of java ee sdk since i couldnt find u10 anywhere. it had a little different menus but was about the same. it is saying i have no targets when i go to create a project testrun. in preferences->android, i set the path to the android sdk and it found the tools folder but it doesnt show any sdk targets. any idea?
|
nevermind, ran the sdk and avd manager and all the updates and now they all show up.
|
|
|
02-04-2010, 08:14 AM
|
#40 (permalink)
|
|
Junior Member
Join Date: Feb 2010
Posts: 1
Device(s):
|
Is it possible to download Android SDK components without the Android SDK manager?
Is it possible to download Android SDK components without the Android SDK manager?
During the installation of my Android SDK, I am getting stuck during the process where the manager goes out and downloads all the revisions of the APIs and the SDKs.
It is potentially due to a socket issue that typically occurs when a database query is called and there are a large number of TCP connections... according to googling my error (No buffer space available (maximum connections reached?): recv failed )...
Here is the errors that come up..
So I just need to know if there is a way, other then using the Android download manager, to download / update my computer with the Android SDK components....
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
|
|
|
|