[android-developers] 2 Best Practices: Licensing and Eula. 1 ready to run Activity

2010-12-07 Thread Hunter Peress
2 Best Practices: Licensing and Eula. Provided in 1 ready to run Activity http://code.google.com/p/androidbest/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Unlocked Nexus One, cannot install updates

2010-09-22 Thread Hunter Peress
Hi, I unlocked my Nexus One with a custom recovery image, and installed a cyanogen version of froyo, now, the latest OTA froyo is not installing, How can I get this OTA update to install?? Its ok if I have to wipe my phone and lose all data. Thank you. -- You received this message because you

[android-developers] Serious Problem with AudioRecord on NexusOne

2010-05-31 Thread Hunter Peress
Hey. I'm running AudioRecord to capture sound. It runs inside a service. But, after the initial run after installing the app (in which I've never seen this bug occur), the sound goes blank about 20% of the time after 0-20 seconds of running. Audio data STILL gets captured from the hardware,

[android-developers] Re: Serious Problem with AudioRecord on NexusOne

2010-05-31 Thread Hunter Peress
FYI, the source code that I linked is a simpler version that is not service based. I was thinking the service was causing the bug, but it still exists without being service based. On May 31, 4:01 pm, Hunter Peress hunt...@gmail.com wrote: Hey. I'm running AudioRecord to capture sound. It runs

[android-developers] NexusOne AudioRecord Randomly goes to standby

2010-05-09 Thread Hunter Peress
On the nexus one, my app goes into Audio Record Stanby randomly after 0-40 seconds. I'm using the AudioRecord class, and while the standby is reported in the terminal, the AudioRecord instance reports the same states of RECORDSTATE_RECORDING and STATE_INITIALIZED throughout the entire sequence.

[android-developers] Re: NexusOne AudioRecord Randomly goes to standby

2010-05-09 Thread Hunter Peress
latency - then they have a macro called UNLIKELY that puts the mixer to sleepmaybe it's happening in here...? On May 9, 6:17 am, Hunter  Peress hunt...@gmail.com wrote: On the nexus one, my app goes into Audio Record Stanby randomly after 0-40 seconds. I'm using the AudioRecord

[android-developers] I cannot find a complete list of locales.

2010-04-28 Thread Hunter Peress
Hello. I want to translate my app into all available markets. Now, from the market, we have: English (en_US) | 日本語 (ja_JP) | français (fr_FR) | čeština (cs_CZ) | Español (es_ES) | русский (ru_RU) | Deutsch (de_DE) | 한국어 (ko_KR) | italiano (it_IT) | português (pt_PT) | polski (pl_PL) | Nederlands

[android-developers] Leaking Service ... vs. stopped service. middle ground??

2010-03-11 Thread Hunter Peress
If I don't unbind a service of mine in onPause,then a back button press will cause a leaking service. if i do unbind the service in onPause, then the service doesnt leak but it stops. So how can I unbind (to prevent leaking onBackButtonPress) yet still allow the service to run (my service is

[android-developers] Re: WakeLock finalized while still held?

2010-03-08 Thread Hunter Peress
Hello. I too have a Service. It performs a task, and when finished, it releases the wake-lock. There is a place to stop the service from doing its work, and at this point I too release the wake-lock. So from my perspective, I cleanly release the wakelock at all possible exit points from my

[android-developers] Announcing First MP3 OGG Recorder for Android

2010-01-13 Thread Hunter Peress
Hi Folks Just released the first MP3 recorder available on Android: URL: http://hifirecorder.codejanitor.us Supports MP3, OGG. Sending files over email. W@@T!! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] AudioRecord + Android 1.5 = Error

2009-12-28 Thread Hunter Peress
Hi, I'm using the AudioRecord to capture raw PCM sound data. On both 1.5 devices (Motorola Cliq, and Droid Eris) I get: AudioRecord(28661): Error obtaining an audio buffer, giving up.I/ AudioHardwareMSM72XX( 2224): AudioHardware PCM record is going to standby. Any ideas why? -- You received

[android-developers] AsyncTask + NDK = Neverending process

2009-12-19 Thread Hunter Peress
Hi, I'm running a pretty weird setup: AsyncTask1.class - AsyncTask2.class -AsyncTask3 (inner class of AsyncTask2) -NDK call (this one takes a long time). Since the NDK takes so long, I want to give users the option to kill the NDK call so that they can actually use the app. Basically, I keep

[android-developers] Re: AsyncTask + NDK = Neverending process

2009-12-19 Thread Hunter Peress
: On Sat, Dec 19, 2009 at 5:51 AM, Hunter Peress hunt...@gmail.com wrote: aSyncTask1.getAsyncTask2().getAsyncTask3().cancel(true); The true means mayInterruptIfRunning but, lo and behold, the NDK process is still running. I don't care how its done, but I need that NDK process to die when I

[android-developers] AudioRecord producing no-sound data. Why??

2009-12-06 Thread Hunter Peress
Here is my AudioRecorder class, using audio record, why is it not producing any sound data? import java.io.FileOutputStream; import java.io.IOException; import android.content.Context; import android.media.AudioFormat; import android.media.AudioRecord; import android.media.MediaRecorder; public

[android-developers] Re: AudioRecord producing no-sound data. Why?? [SOLUTION]

2009-12-06 Thread Hunter Peress
Logic: for (int i = 0; i tempBuffer.length; i++) { saveBuffer[saveBufferPos] = tempBuffer[i]; saveBufferPos++; } On Dec 6, 6:23 pm, Hunter Peress hunt...@gmail.com wrote: Here is my AudioRecorder

[android-developers] Accessing videos uploaded to YouTube

2009-12-03 Thread Hunter Peress
Hi, thanks for reading. So, after a video is uploaded to youtube. I'm looking for a way to access its uploaded youtube id. My best idea is that this information might be stored in some content provider somewhere. Anyone have an idea? -- You received this message because you are subscribed to

[android-developers] Is there an explorer for all contentProviders?

2009-12-03 Thread Hunter Peress
Hi. I want to search all the content providers. Is there a UI for doing this? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] Recording direct system audio??

2009-11-09 Thread Hunter Peress
Im trying to record audio directly from the system. Using the standard API, you can only record from the MIC or phonecalls, ala: MediaRecorder Some ways I've tried is to read from /dev/audio and /dev/eac from my app, but I think the sandbox of the app is preventing this. Im thinking about using

[android-developers] Re: Recording direct system audio??

2009-11-09 Thread Hunter Peress
been asking for this capability for android for years now too. On Nov 9, 6:57 pm, Hunter Peress hunt...@gmail.com wrote: Im trying to record audio directly from the system. Using the standard API, you can only record from the MIC or phonecalls, ala: MediaRecorder Some ways I've tried

[android-developers] Searching Youtube from developer's app

2009-10-30 Thread Hunter Peress
Is there a way to search youtube from my app? Ideally it would be as easy as an Intent with ACTION_SEARCH and some user level place where i can make youtube queries within my developer app for now, I cannot find a way. Failed paths: com.google.android.youtube.QueryActivity is not available to

[android-developers] HTTP POST through intent

2009-09-22 Thread Hunter Peress
Yo. Im finding this topic severely lacking in attempts. I have an http post. I want to post it THROUGH an intent to a browser and browse. howto Use the data part of an intent?? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: ADC2 entries so far...

2009-09-19 Thread Hunter Peress
Entertainment. What's Shakin' http://whatsshakin.codejanitor.us/ What's Shakin' is a percussion instrument that feels sounds like an acoustic shaker (shake your phone!) - so good, you can play to LIVE music or songs on your phone. Settings include: sensitivity, number of beads, visualization,

[android-developers] Help with WiFinder

2009-08-13 Thread Hunter Peress
Hi. I'm the author of wifinder on android, a way to find wifi hotspots. Anyone interested in helping out? I'm willing to set up a profit-share arrangement. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] ZooShaker is fun for all ages

2009-08-07 Thread Hunter Peress
ZooShaker is a fun app for kids and adults. Select an animal by hilarious pictures, and shake the phone. http://zooshaker.codejanitor.us --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] San Francisco Android App Release Party/Meetup This Sunday:

2009-06-10 Thread Hunter Peress
Hey, I'm working full steam ahead on my 2nd location based app. Going to release this Sunday ,would love other Android devs to come out. This Sunday, 4pm , Valencia street, the Mission (Mission Creek Cafe). http://upcoming.yahoo.com/event/2888698?v=1w=attend

[android-developers] Cannot load maps with Production API Key.

2009-05-26 Thread Hunter Peress
Hi. I obtained a production maps API key. I then signed the .apk with the production keystore cert, but when I load it onto my phone there is no maps data. I do, however, get maps data with the dev key. What am I missing here?? This is literally blocking my release here.

[android-developers] Re: Cannot load maps with Production API Key.

2009-05-26 Thread Hunter Peress
FYI, I have one clue: 05-26 10:09:05.191: ERROR/MapActivity(4070): Couldn't get connection factory client On May 26, 9:40 am, Hunter Peress hunt...@gmail.com wrote: Hi. I obtained a production maps API key. I then signed the .apk with the production keystore cert, but when I load it onto

[android-developers] Re: Cannot load maps with Production API Key.

2009-05-26 Thread Hunter Peress
FIXED! I carefully redid the steps. I had success with the eclipse tool, FYI. On May 26, 10:11 am, Hunter Peress hunt...@gmail.com wrote: FYI, I have one clue: 05-26 10:09:05.191: ERROR/MapActivity(4070): Couldn't get connection factory client On May 26, 9:40 am, Hunter  Peress hunt

[android-developers] Making edittext smaller

2009-05-07 Thread Hunter Peress
Hi, I'm trying to make an edittext box smaller. I've tried android:textSize , but that only makes the text smaller, not the box. And when I change the android:layout_height, then the text is cut off. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Copy My Location Functionality efficiently?

2009-05-06 Thread Hunter Peress
Hi. I'm looking to do a single location update as efficiently as possible, currently, I'm doing: requestLocationUpdates (getBestProvider(criteria, true), 0,0, listener); and then in the callback: onLocationChanged(Location) { removeUpdates (listener) } The idea is to do 1 high priority