Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: android development using netbooks

  1. #1
    Junior Member
    Join Date
    Jan 2014
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default android development using netbooks

    hey guys. i have this assignment to run a hello world android app.
    now the problem is the android app emulator is stuck on the android loading screen.

    i have googled this problem. they said that android development needs a fast computer to execute apps neatly.

    is there a way to run it on netbooks?
    like is there a ram setting sd card setting that can run it faster?

    pls help. thx


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: android development using netbooks

    Look at using a Genymotion emulator with Oracle's VirtualBox. I am using a Samsung netbook with this combination to execute Android programs from eclipse. The emulator takes about 20 seconds to start.

    One problem I occasionally have is with the adb program. I have a batch file the kills and restarts the adb program. Running that batch file several times usually clears the problem. The batch file:
    @rem  kill/start server
    Set ADBPath=D:\AndroidDevelopment\adt-bundle-windows-x86-20130522\sdk\platform-tools\
     
    @REM set ADB_TRACE=1
     
    %ADBPath%adb devices
     
    %AdBPath%adb.exe kill-server
    %AdBPath%adb start-server
     
    MORE
    If you don't understand my answer, don't ignore it, ask a question.

Similar Threads

  1. guideline do android development
    By aba muhammad in forum Android Development
    Replies: 2
    Last Post: November 6th, 2013, 07:37 AM
  2. Java Enterprise Development(J2EE) or Java Android Development?
    By gokhan47 in forum What's Wrong With My Code?
    Replies: 3
    Last Post: September 1st, 2013, 08:27 PM
  3. Android Development
    By bgroenks96 in forum Java ME (Mobile Edition)
    Replies: 3
    Last Post: August 30th, 2013, 10:03 PM
  4. Android Development Career!!
    By diyaots in forum Android Development
    Replies: 4
    Last Post: July 1st, 2013, 06:54 AM
  5. Starting Android Application Development
    By MikeSki3 in forum Android Development
    Replies: 8
    Last Post: May 3rd, 2013, 07:54 AM