Android :: Running Android SDK 1.1 R1 On Linux 64 Bit Fedora 11 RawHide

Apr 7, 2009

How to get Android SDK 1.1 R1 (android-sdk-linux_x86-1.1_r1) working on 64 Bit Linux, Fedora 11 Beta RawHide. (this could surely be applied to other distros as well I suppose but I have just tested the above)

Download the "eclipse-java-ganymede-SR1-linux-gtk-x86_64.tar.gz" eclipse.org. The version from Fedora repository doesn't work due to incompatible packages / versions. Make sure you have the Open JDK available and that Eclipse is using that one instead of the gjc.

Then install 32 bit library dependencies for Android SDK on Fedora 11 Beta.

$yum install glibc.i686 $yum install ncurses-libs.i586 $yum install libstdc $yum install libstdc++.i586 $yum install libzip.i586 $yum install libX11.i586 $yum install libXrandr.i586

I had a lot of problems with the emulator which using SDL and got the following error:

"SDL init failure, reason is: No available video device"

Found a good tip to see what libs is not found:

$cd $andoird_sdk/tools/ $strace ./emulator

It seems that the SDL couln't initialize the screen if not the libX11 and libXrandr wasn't aviable.

Next step was to get the ddms working:

The last line of $ANDROID_SDK1.1R1/tools/ddms has a - Djava.library.path entry pointing to 32 bit eclipse libraries which couldn't be used. So I renamed the library property so it wouldn't be read and instead use the 64 bit eclipse versions.

exec "$java_cmd" -d64 -Xmx256M $os_opts $java_debug - Djava.ext.dirs="$frameworkdir" -Djava.dummy.library.path="$libdir" - Dcom.android.ddms.bindir="$progdir" -jar "$jarpath" "$@"

Then getting the usb to work, follow the instructions on: http://groups.google.com/group/android-developers/browse_thread/threa... http://zachoglesby.com/2009/03/android-and-fedora/

The following did work at some point but isn't the prefered way to connect the android according to my googling: [url]

I have to start adb as root.

Android :: Running Android SDK 1.1 R1 on Linux 64 bit Fedora 11 RawHide


Android :: Running App On Windows / Developed On Linux

May 25, 2010

I want to run an Android application on Windows using eclipse that has been already developed on Linux OS. I tried to copy the source/res and menifest file of Android application form linux and started creating a new project on windows. I tried to replace the source/res and menifest of newly created Project on windows with one on linux. It was unable to generate R.java file.I wonder if java is portable accross platform then why I couldn't create and compile a new project on Windows from Linux.

View 1 Replies View Related

General :: Running Linux On Low-End Android Phones?

Feb 28, 2012

Is it possible to run Linux on low-end android phones? Possibly a method that does not need loop device support.

I'm talking about 600Mhz processor and 256mb RAM. And Damn Small Linux as the linux distro.

Is there any method to do this? I have seen methods for Ubuntu and backtrack but they require better hardware.

View 3 Replies View Related

Android :: Running Linux Commands From Java Code

Aug 11, 2009

I am trying to execute "ls -a" from java code, any idea how to do so.

View 6 Replies View Related

Android :: Connect The G1 Usb Drivers For Fedora 9

Feb 27, 2009

tried to connect the G1 Android phone on Fedora 9. Is it required to install the USB drivers or not, if yes then where i will find the drivers.

View 2 Replies View Related

Android :: Redhat Vs Fedora Vs Ubuntu?

Nov 5, 2009

During my very short time experience with Android, I found that Linux is most suitable environment for development compared to Windows. Please correct me if I'm too inexperienced. My question is, Which version of the Linux is best suitable. [Redhat/Fedora/Ubuntu..] Please let me know. Is Linux version really matters.

View 6 Replies View Related

Android :: Issue With Emulator On Fedora 10 64 Bit

Nov 7, 2009

figure out the issue with emulator on Fedora 10 64 bit. I'm new to this development.

CODE:.....................

View 2 Replies View Related

Android :: Fedora Eclipse Doesn't Let Me Install ADT Plugin

Oct 2, 2009

I have a problem installing the ADT plugin in Fedora's version of Eclipse. I'm not sure it is a problem with the plugin, it's probably more Fedora's team fault (they heavily personalized and modified eclipse in Fedora's repository).

I installed the version of Eclipse that is included in Fedora's official repos, which is based on version 3.4.2 build 20090211-1700. I've followed the step-by-step instruction provided in Android's website. The problem arises when I go into the Help -> Software updates window. When I select the two plugins to install, it lets me install the DDMS, but not the Developer Tools. If i try (select Developer Tools then click Install) it gives me the following error message (after calculating space and dependencies):

CODE:................

At first, I thought I had not installed some packages (org.eclipse.equinox.p2.iu and/or org.eclipse.wst.sse.core), so I opened YumEX and searched for those pacckages... but they are not available in Fedora's repositories.

View 4 Replies View Related

HTC Incredible :: Rooting Tip For Linux And Linux Live Booting

Jun 19, 2010

i successfully got into adb in recovery mode fairly easily on my ubuntu 10.4 laptop using the following method- this should also work for a linux live boot from a usb flash drive

in one terminal tail and follow log messages
~$ tail -f /var/log/messages

In another terminal run the loop

Then

1. plugin usb and keep it plugged in
2. remove battery, eject sd card.
3. put battery in
4. press vol- and power
5. after around 6 seconds, your terminal with the log will show something like "new high speed USB..."
6. press vol- to select recovery
7. press the power button
8. IMPORTANT- as soon as you see a new log entry (something like "USB disconnect"), pop in the sd card

check your loop terminal for adb. if it doesn't work, repeat at step 2

View 2 Replies View Related

Android :: Android - Based On Linux - Can Run Anything That Can Run On A Linux Box

Apr 16, 2009

I know android is based on linux, does this mean it can run any and all linux applications? If so has anyone tried to run anything like wine? I also noticed that by default you cant run apps directly from sd card, but i saw a modification on a site that lets you change it so you can, so technically speaking is there any limit on the size of sd the G1 can handle?

View 1 Replies View Related

Android :: Running Application On Emulator Running Older SDK

Jun 28, 2010

I have a project that builds against Android v2.1 . I can run it fine on a phone running 1.5 but when I try to launch it with an emulator running 1.5, the emulator doesn't show up on the list of available AVDs. I have the <uses-sdk android:minSdkVersion="3"/> tag in my manifest but it doesn't make a difference.

View 2 Replies View Related

Android :: List Of Running Process Running In The Background

Aug 19, 2009

I am trying to get the list of process running in the background.

View 4 Replies View Related

Android :: How To Run Apk Application On Linux?

Jan 28, 2010

Is it possible to run apk application on Linux without using android emulator? if yes, How ?

View 2 Replies View Related

Android :: Feature Of Linux In Our App?

Mar 25, 2010

Since Android is built on Linux Kernel.Are there any functionality of Linux which we can use in our application?

View 2 Replies View Related

Android : Kill The Currently Running Thread - If One Is Currently Running

Nov 4, 2010

I've created a class which is an extension of Thread. This class hits a web service and throws some data on screen. I don't care about persisting this data (the screen displays search results).

Currently, the user simply types into an EditText and clicks a search button. I'd like to take away the search button and implement something similar to Google's Instant Search where, as you type, the search results get updated.

This means, as the user types, the search parameters change. I want to be able to kill the currently running thread (if one is currently running) and spawn a new one with the new search string. How can this be achieved? Can I do it with Thread or will I need to use a new object?

View 4 Replies View Related

Android :: SDK Run File On Linux 64 Bits?

Dec 21, 2009

I wonder if someday the SDK will run fine on Linux 64 bits. I understand it's not a priority for Google team, but 64bits desktop OS are becoming common. My case : Mandriva 2010 64 bits, Eclipse 64 bits, SDK 1.6 : OK to create code & launch emulator. But : - adb never find my phone linked to USB cable (it was OK before on Mandriva 32 bits) - TTS also doesn't work well on the emulator (it was OK in Mandriva 32 bits). Do you think the problem is with Mandriva ? or in Android SDK ?

View 9 Replies View Related

Android :: Torrent FU - Linux Router

Jun 5, 2009

I've been trying to set up torrent fu on my computer for the past 2 hours. I have everything downloaded, things just wont connect, can anyone help me who has done this before, I have a Linuxes router which I've read might be a problem?

View 26 Replies View Related

Android :: Signing An Application On Linux

Feb 20, 2009

I've got a problem! I don`t know how to sign an application on Linux. Can you please help me?

View 9 Replies View Related

Android :: Update Sdk On Headless Linux

Jan 28, 2010

Has anybody succeeded in updating/installing Android SDK platforms on a headless Linux server? All I got is the following error:

It seems like the action "update sdk" is actually not supported? I searched around but couldn't find anything yet..

CODE:.................

View 3 Replies View Related

Android : How To Patch Linux Kernel?

Nov 17, 2010

I am having a serious problem. What i have in my hand : Linux Kernel 2.6.29 with Android Eclair patches and some board specific patches(as .patch files). Linux Kernel 2.6.32 with Android Froyo patches.

View 1 Replies View Related

General :: Android Apps On Linux?

Sep 1, 2012

Android and Linux kernels started re-merging at version 3.3. People said that a short way down the road, android apps would be able to run natively in linux. the kernel is now version 3.6 and I've heard nothing more about running android apps in linux. people on these and other forums put a lot of great work into getting linux running on android devices. now with windows 8 coming out, the market will be full of both ARM and x86 based touch devices of all sizes and shapes. I for one would love to be able to boot up ubuntu on one of these devices, and use either traditional linux apps or android touch apps as my mood and situation dictate. so- any new word on when we will be able to run android apps in linux?

View 4 Replies View Related

General :: Gbox MX2 Android To Linux

Mar 2, 2014

Been following chroniccorey's linux mod for the gbox mx2, and am wanting to use advanced launcher to access the terminal to add firefox and a couple emulators to my xbmc. Unfortunately I can't seem to find the terminal, and ssh isn't working to apt-get from repositorys. I have some experience with linux, but am by no means pro.

View 2 Replies View Related

Android :: Want Terminal Or Ssh Client To Unix Or Linux

Sep 6, 2010

I want a ssh client or terminal simular to Unix or Linux so I can ssh into my server.

View 2 Replies View Related

Android :: How To Run Linux On Hand - Held Tablets?

Aug 22, 2010

I want to run a dj tango app on a hand-held device. It'll need to run Python (obviously) and will write its data to an SQLite database. Are there any tablets available that will let me do this? Specifically, if I bought an Android tablet, would I have to/be able to install Linux instead, or would I be able to run it under Android?

View 2 Replies View Related

Android :: Download Linux SDK Version / Use Different Formate

Oct 18, 2009

If one downloads the Linux SDK (1.6) the extension of it is .zip but in fact it uses the .tgz format. So if anyone cannot unpack just rename the file to .tgz and it will work. I am surprised that no one from Goolge tested that and that no one complained so far.

View 2 Replies View Related

HTC Hero :: Rooting Any Android Phone From A Linux OS?

Feb 22, 2010

I'm a Linux user, so the idea of rooting the phone is one of the many reasons I picked up this phone. However, I've been reading the forums and searching around, and have yet to find anything about rooting *from* Linux. Ubuntu and Fedora find the Hero beautifully; I've had better response mounting this than some portable hds I own. But has anyone successfully tried rooting any Android phone from a Linux OS? I'd really rather not install Windows just to do this. I imagine Wine might help, but there's got to be a better way to access Linux-to-Linux than using Windows.

View 2 Replies View Related

Android :: Eclipse Plugin On Ubuntu Linux

May 2, 2009

I am running Ubuntu Linux (Jaunty) JDK 6.0 and am getting a strange error for my first app. i created the project and set the SDK home. And also the JAVA_HOME is set. But I can't run the app.

Your Project Contains error(s) please fix them before running your application.

The only thing I see on the console logs are the following:

CODE:.................

--------------

When I click Run as Android Application, I get the following error.

View 3 Replies View Related

Android :: Dalvik JIT Compiler On Linux X86 Or Mac Build

Jul 1, 2010

As I've heard from Google IO 2010 session, Dalvik JIT compiler just support ARM processor.Do this mean my own build of Android source on Linux X86 or Mac OS X can not support JIT compiler?Should I use some target board with ARM processor to test Dalvik JIT compiler?

View 2 Replies View Related

Android :: How Can I Compile Dalvik To Run It Locally On Linux?

Aug 22, 2010

What are the minimal steps necessary (including retrieving the source code) to compile and run just the Dalvik virtual machine on Linux?

View 1 Replies View Related

Android :: Why Click On X Of Linux Emulator Not Working?

Apr 12, 2009

I have been developing on the windows Android SDK until recently I have moved to the Linux SDK. Once I launch the application from eclipse, I click the 'x' of the emulator window and an empty window persists, whereas this does not happen in the windows. I have to manually kill thru the shell (kill -9 "<emulator process id>") Has anybody faced this problem on ubuntu 8.04, with android SDk 1.1?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved