[android-developers] Re: service permissions problem

2009-02-09 Thread Matt Flax
Solution found ... On Tue, Feb 10, 2009 at 12:13 PM, flatmax wrote: > Hello, > > I have a service which uses the RECORD_AUDIO permission. > > I have set up my androidmanifest.xml file as I would expect to enable > that permissions (it is included below) > > For some reason when I start the servi

[android-developers] Re: audio recording to split (small) files without dropping or overlapping samples

2009-01-18 Thread Matt Flax
to /dev/null and calling into getMaxAmplitude > periodically. Take a look at the source code for SoundRecorder on > android.git.kernel.org. > > On Jan 16, 3:20 pm, "Matt Flax" wrote: > > we are implementing a sound level meter. For privacy reasons, we don't > want >

[android-developers] Re: audio recording to split (small) files without dropping or overlapping samples

2009-01-16 Thread Matt Flax
we are implementing a sound level meter. For privacy reasons, we don't want the audio lying around on the disk. We could do it on the fly without recording to disk, however I don't think that is possible with the sdk ... is it ? Matt On Fri, Jan 16, 2009 at 12:16 PM, Dave Sparks wrote: > > I am