[android-developers] how to skip loading drivers at startup and load them all later on?

2011-05-13 Thread longingtoadopt.com
I am trying an experiment to switch out drivers dynamically - on demand. On Android 2.2, how to skip loading drivers at startup? I want to load them at a later time. Is there a blanket command to skip loading the drivers? Is there another one to start loading all of them? -- You received this

[android-developers] Re: how to skip loading drivers at startup and load them all later on?

2011-05-13 Thread longingtoadopt.com
/site/magouyaware On Fri, May 13, 2011 at 12:42 PM, longingtoadopt.com anil.r...@gmail.comwrote: I am trying an experiment to switch out drivers dynamically - on demand. On Android 2.2, how to skip loading drivers at startup? I want to load them at a later time. Is there a blanket command

[android-developers] building hello-jni sample in Android NDK causes error “Default target help does not exist in this project”

2011-04-15 Thread longingtoadopt.com
Trying to build hello-jni sample in Android NDK. Followed instructions to create build .xml per http://developer.android.com/sdk/ndk/overview.html#samples android update project -p . -s Trying to run under Eclipse Helios SR2. I get this error: Description Resource Path Location Type Default

[android-developers] Issues installing Opera browser on Froyo 2.2. libopera.so not found

2011-04-04 Thread longingtoadopt.com
I have a dev phone Froyo 2.2 with a non-working browser and wanted to install another browser on it. On a phone with a working browser, I downloaded Opera browser from amazon marketplace. However, I cannot find what the apk name is in /system/app. Does anyone know? So I went to this site and

[android-developers] Re: who prevails with audio in simultaneous cell phone and VOIP calls?

2011-02-26 Thread longingtoadopt.com
bump On Feb 24, 10:27 am, longingtoadopt.com anil.r...@gmail.com wrote: I asked a co-worker to make a Linphone VOIP call to me and while the call was in progress, I made a regular cell phone call to my wife. I was able to hear their voices simultaneously. This was surprising. When I play

[android-developers] who prevails with audio in simultaneous cell phone and VOIP calls?

2011-02-24 Thread longingtoadopt.com
I asked a co-worker to make a Linphone VOIP call to me and while the call was in progress, I made a regular cell phone call to my wife. I was able to hear their voices simultaneously. This was surprising. When I play an audio clip on my cell phone and then make a cell phone call out, the media

[android-developers] Re: question on KVM/thread scheduler and processor cores

2011-01-26 Thread longingtoadopt.com
, Jan 25, 2011 at 3:39 PM, longingtoadopt.com anil.r...@gmail.comwrote: I need to test a program that says it will restrict the number of processor cores being used. I was thinking of writing a program to spawn 100 threads, each one performing some long, intensive computation. Then from

[android-developers] question on KVM/thread scheduler and processor cores

2011-01-25 Thread longingtoadopt.com
I need to test a program that says it will restrict the number of processor cores being used. I was thinking of writing a program to spawn 100 threads, each one performing some long, intensive computation. Then from a console, I could see how many cores are being used. If I write it in Java

[android-developers] Re: Cannot compile Desk Alarm Clock (branch eclair ver 2.1)

2010-12-31 Thread longingtoadopt.com
Alright, I created an ubuntu partition, installed git, repo, eclipse, downloaded the eclair branch of android and built it. Created a Java project using 'existing src' with the android root directory. Was wondering how I should run/step through the Desk Clock application. Since there is no ADT

[android-developers] Re: Cannot compile Desk Alarm Clock (branch eclair ver 2.1)

2010-12-26 Thread longingtoadopt.com
Would prefer not to have to - since I am on Windows On Sunday, December 26, 2010 1:02:55 AM UTC-6, Zsolt Vasvari wrote: Correct, you cannot compile these modules with the SDK alone. You need to download the platform source and compile those. I don't know the details. -- You received

[android-developers] Re: how to clone application (Desk Clock) from Git tree that will work for API 7?

2010-12-25 Thread longingtoadopt.com
objects: 100% (1192/1192), done. remote: Total 4270 (delta 2039), reused 4220 (delta 1996) Receiving objects: 100% (4270/4270), 1.18 MiB | 196 KiB/s, done. Resolving deltas: 100% (2039/2039), done. On Dec 24, 10:53 pm, longingtoadopt.com anil.r...@gmail.com wrote: I was trying to run and read

[android-developers] Cannot compile Desk Alarm Clock (branch eclair ver 2.1)

2010-12-25 Thread longingtoadopt.com
I want to study and run through the Desk Alarm Clock in order to understand it. I cloned the branch for eclair ver 2.1. However, it does not compile: DescriptionResourcePathLocationType ACTION_ALARM_CHANGED cannot be resolved or is not a fieldAlarms.java

[android-developers] Re:

2010-12-24 Thread longingtoadopt.com
Yes, I agree that the real meaning behind Christmas is lost. (http:// goodnewsforyou.tripod.com/) On Dec 24, 9:50 pm, saurabh sinha saurs...@gmail.com wrote: Hi there is bitter truth behind christmas which I felt personally when jesus was on earth nobody cared him even he was punished by

[android-developers] how to clone application (Desk Clock) from Git tree that will work for API 7?

2010-12-24 Thread longingtoadopt.com
I was trying to run and read through the Desk Clock code. I cloned the subtree here http://android.git.kernel.org/?p=platform/packages/apps/DeskClock.git;a=tree However it pulls in the latest code and some of which refers to API level 9 variables eg. ACTION_SET_ALARM, EXTRA_HOUR, EXTRA_MESSAGE,

[android-developers] Re: Intent resolution: supplying action+data where filter had only action, causes it to fail

2010-11-01 Thread longingtoadopt.com
Thanks for replying. The aim was to retrieve a PendingIntent and to modify it. There would be several PendingIntents that had been registered for multiple alarms. They are also stored in a db to register upon app startup. register PendingIntent_i for Alarm_i. [i=0..n] use the data part of the

[android-developers] Intent resolution: supplying action+data where filter had only action, causes it to fail

2010-10-31 Thread longingtoadopt.com
I thought that Action was preeminent during intent resolution and if the intent had the same action as the intent filter, it would be considered a match regardless of data, if the filter did not specify anything. So I was very surprised to find that supplying action+data where filter had only

[android-developers] Re: Intent resolution: supplying action+data where filter had only action, causes it to fail

2010-10-31 Thread longingtoadopt.com
For actions, the field will not be tested if no values have been given (treating it as a wildcard); if no data characteristics are specified, however, then the filter will only match intents that contain no data. Thanks for your reply... If you look at the code, I did specify the action in