Re: [android-developers] About Monkey Scripting option

2012-09-11 Thread nagaraj attimani
Dear Pradeep,

Can you please share your user script.

On 1/4/10, pradeep  wrote:
> Hi
>
> I would like to tell every body that it is possible to simulate a
> sequence of events on emulator using monkey scripting option "-f" .
>
> It is successful on android 2.0 sdk
>
>
> Regards,
> Pradeep
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en


-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Image to Video Converter In android

2012-04-09 Thread nagaraj attimani
Dear Arun,

First you need to convert Image to YUV format using Image Decoder.
Then you can feed each YUV Image as a Video Input to Media Recorder Engine.

Go through the Media Recorder Source Code to get more info.

On Mon, Apr 9, 2012 at 1:22 PM, Arun  wrote:
> hello all,
>
> I want to convert a sequence of images in to video file in android.
> and wants to share the file on facebook.  i had done lots of R&D and
> uses FFmpeg library for the same, But no success.
>
> please help me.
> and id anyone have working code please provide me.. i am in deep
> trouble.
>
> Thanks in advance.
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en



-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Test Framework available in Andorid Native Layer

2010-11-26 Thread nagaraj attimani
Hi All,

I would like to test A/V video codec in native layer using test framework
setup.
Can you please guide me on this ?

Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] posibility of Video calls in android

2010-10-10 Thread nagaraj attimani
the CSD based video telephony engine exists in opencore
that is 2-way engine.


On Fri, Oct 8, 2010 at 5:12 PM, Narendra Bagade wrote:

> Does android support video calls?
>
> Is any api is there to achive video call?
> Please need help ,on which version of android os video calls are possible.
>
> --
> Regards,
> Narendra
> .
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en




-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: How can I track down a crash in a .so without a stack trace?

2010-09-21 Thread nagaraj attimani
from the stack trace..it can notice the carsh happend in

 #00 pc 0003ec30 /system/lib/egl/libGLES_qcom.so

u can use addr2line tool in linux to find the where crash occured in the
.so.

On Tue, Sep 21, 2010 at 6:50 PM, Chris Stratton  wrote:

> Yes, however note that you probably need to use the arm version of
> objdump from ndk or aosp build system, and you need to run it on the
> library file present on the user's device, as the addresses may well
> be different than in the file from another build.
>
> On Sep 21, 8:47 am, andrew_esh  wrote:
> > That is a stack trace, after the SIGSEGV (Signal, Segment Violation)
> > message, below where is says "stack:". Do an 'objdump -x' on the .so (/
> > system/lib/egl/
> > libGLES_qcom.so), and start matching up the addresses with code. It
> > should lead you to the specific routine that the code crashed in. The
> > first few lines after SIGSEGV are a register dump, so you can tell
> > what was happening when the crash occurred. Looks like "r2" (Register
> > 2) was the one that was used in the reference that violated memory
> > protection. You can disassemble the code around the routine at the top
> > of the stack, near the address of the fault, and find the code that
> > did it. You can add options to the compile of the .so to produce
> > assembly source code that retains the associated C code in comments.
> > Once you're up into the C code, you can probably pretty well determine
> > what went wrong. Perhaps an out-of-bounds value was passed into an
> > OpenGL function. Perhaps more memory was needed in a buffer that had
> > little, and OpenGL ran off the end.
> >
> > I think there may even be scripts out there which will take the binary
> > addresses shown in this stack dump and will find names for the
> > routines, by automating part of what I described above.
> >
> > Also, if you can park the application, attach strace to it, and then
> > unpark it and cause it to produce the bug, the strace output will show
> > a chronological trace of the system calls that led up to the crash.
> >
> > On Sep 20, 12:42 pm, Leigh McRae 
> > wrote:
> >
> >
> >
> > > My game is crashing on the HTC Hero and I have managed to get a user
> > > to send me their log.  I don't see a Java stack trace at all.  It
> > > looks like it's crashing in the OpenGL driver.  I was wondering how I
> > > could go about trying to determine the problem.  I was thinking of
> > > adding that acra project that sends crash reports to a server but I am
> > > thinking it will just send the same that is in this log.   I have
> > > error checking everywhere so I am really at a lose where to go from
> > > here.  I even went out and bought a HTC Hero but Canada only has 1.5
> > > for the OS.
> >
> > > 09-19 09:09:40.957 I/DEBUG ( 53): *** *** *** *** *** *** *** *** ***
> > > *** *** *** *** *** *** ***
> > > 09-19 09:09:40.957 I/DEBUG ( 53): Build fingerprint: 'sprint/htc_heroc/
> > > heroc/heroc:2.1-update1/ERE27/169236:user/release-keys'
> > > 09-19 09:09:40.957 I/DEBUG ( 53): pid: 5999, tid: 6009 >>>
> > > com.lonedwarfgames.tanks.androidpaid <<<
> > > 09-19 09:09:40.957 I/DEBUG ( 53): signal 11 (SIGSEGV), fault addr
> > > 0089e268
> > > 09-19 09:09:40.957 I/DEBUG ( 53): r0 00387ab4 r1 00387ab0 r2 0089e268
> > > r3 03ff
> > > 09-19 09:09:40.957 I/DEBUG ( 53): r4 0005 r5 0089e268 r6 009705b0
> > > r7 00387ab0
> > > 09-19 09:09:40.957 I/DEBUG ( 53): r8 00382128 r9 00382c24 10 004554c0
> > > fp 00162480
> > > 09-19 09:09:40.957 I/DEBUG ( 53): ip  sp 462f8ce4 lr 8052b6a8
> > > pc 8053ec30 cpsr 2010
> > > 09-19 09:09:43.007 I/DEBUG ( 53): #00 pc 0003ec30 /system/lib/egl/
> > > libGLES_qcom.so
> > > 09-19 09:09:43.007 I/DEBUG ( 53): #01 lr 8052b6a8 /system/lib/egl/
> > > libGLES_qcom.so
> > > 09-19 09:09:43.007 I/DEBUG ( 53):
> > > 09-19 09:09:43.007 I/DEBUG ( 53): code around pc:
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 8053ec20 e0225492 e08cc144 e59041b4
> > > e2810004
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 8053ec30 e5925000 e2444003 e4815008
> > > e5925004
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 8053ec40 e5805000 e5b25008 e2810004
> > > e2822004
> > > 09-19 09:09:43.017 I/DEBUG ( 53):
> > > 09-19 09:09:43.017 I/DEBUG ( 53): code around lr:
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 8052b698 e1a03004 e1a01007 e1a9
> > > e12fff3c
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 8052b6a8 e599a024 e59d0008 e318
> > > e087b10a
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 8052b6b8 0a0a e3a03000 e58d3000
> > > e599c080
> > > 09-19 09:09:43.017 I/DEBUG ( 53):
> > > 09-19 09:09:43.017 I/DEBUG ( 53): stack:
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 462f8ca4 00383128 [heap]
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 462f8ca8 
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 462f8cac 
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 462f8cb0 00382528 [heap]
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 462f8cb4 8053bfc0 /system/lib/egl/
> > > libGLES_qcom.so
> > > 09-19 09:09:43.017 I/DEBUG ( 53): 462f8cb8 0080
> > 

Re: [android-developers] Re: Camera Preview Zoom in Android

2010-09-21 Thread nagaraj attimani
can you explain..whcih device are you using to test this ?
are you working on your own platform..



On Thu, Sep 16, 2010 at 9:10 PM, uday  wrote:

> In Android i think they have already implemented this.. because with
> out implementing this in android HAL how they will provide this API??
>
> Is there any chance that this type of implementation is device
> specific??
>
> On Sep 7, 10:32 am, nagaraj attimani 
> wrote:
> > Please check is SetZoom implemented in HAL.
> > and also setparameters in HAL will be called whenever you trying to
> change
> > zoom level
> > In setparameters() in HAL, Setzoom should be called.
> > Setzoom() will send IOCTL command to native camera driver to set the
> zoom.
> >
> >
> >
> > On Tue, Sep 7, 2010 at 9:58 AM, uday  wrote:
> > > Hi All,
> > > I've a problem with Camera Preview Zoom.. The methods present in
> > > Android 2.2, setZoom() is not working to zoom the preview.. Is there
> > > any another way to do the Zoom in android??
> >
> > > Im using the code present in the Android API Demos..
> > > Is ther any body who has worked on implementing ZoomIn & ZoomOut and
> > > got succeed??
> >
> > > --
> > > 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 email to
> > > android-developers+unsubscr...@googlegroups.com
> 
> >
> > > For more options, visit this group at
> > >http://groups.google.com/group/android-developers?hl=en
> >
> > --
> > Warm Regards,
> > Nagaraj
>
> --
>  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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Froyo Camera application process dies when Lock screen happens

2010-09-21 Thread nagaraj attimani
there seems to be issue with opengl.
I faced similar issue and noticed it is due opengl

On Thu, Sep 16, 2010 at 3:33 PM, Naresh Purre  wrote:

>  Hi All,
>
> Camera application process dies and restarts again when device is
> Locked/End Call Key is clicked.
>
> Steps to reproduce:
>
> 1)  Launch Camera application.
> 2)  Click on End Call key(it acts as lock screen when there is no
> active call) or wait till device is locked.
> 3)  Camera application is paused and surfaceDestroyed callback is not
> being called.
> 4)   Camera process has died and restarted again.
>
> I would like to know why Camera process has died after onPause is
> being called and restarted again when device is put to Lock state.
>
> For all key events like BackKey,HomeKey and Accept Key it is working
> fine.
>
>
> Regards
> Naresh.
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread nagaraj attimani
Samsung Galaxy supports OpenGL ES 2.0


On Tue, Sep 21, 2010 at 5:30 PM, RS  wrote:

> Is there some place where I can find a list of android devices with
> OpenGL ES 2.0 (at least through NDK for 2.x devices)?
>
> Or could some developer with any of these comment on how OpenGL ES 2.0
> worked on their device?
>  - Nexus One - running SDK 2.1 (Works through NDK)
>  - Nexus One - running SDK 2.2 (Works)
>  - Droid (Works)
>  - Droid 2 (Works)
>  - Samsung (various phone models) ?
>  - Samsung Tablet ?
>  - Any other ?
>
>
> To know the extensions available would also be very useful.
> Desire appears very close to Nexus One as expected.
>
>
> The list in stackoverflow is old but the closest I could find:
>
> http://stackoverflow.com/questions/2093594/opengl-extensions-available-on-different-android-devices
>
> Thanks in advance,
> RS
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en




-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: New OMX component integration into Opencore

2010-09-20 Thread nagaraj attimani
OMX component should be registred with pvcore
check the pv omx component for more info

On Tue, Sep 14, 2010 at 1:19 PM, Bikash jamwal wrote:

> hi Prajeesh
>
> i am new to android . i am also trying to integrate new codec to pv
> opencore . can u please give me detailed info what u have done so ..
>
> thanks
>
> Bikash
>
>
> -- Forwarded message --
> From: praji 
> Date: Aug 2, 11:38 am
> Subject: New OMX component integration into Opencore
> To: Android Developers
>
>
> I am trying to integrate VP8 video codec into PV opencore FW in Froyo
> & test at PV test application level.
>
> I have done the following steps,
>
> 1. Made a new folder for vp8 @ external/opencore/codecs_v2/omx/
> omx_vp8.
> 2. Made appropriate modifications in the omx_baseclass, omx_common
> etc.
> 3. Modified the PV test app (external/opencore/codecs_v2/omx/
> omx_testapp) for testing VP8.
> 4. included the VP8 source code to froyo.
> 5. Included new oscluuid for VP8
>
> With these modifications, the build is fine. The shared libraries and
> binaries are creating properly.
> Also OMX-MasterInit is passing.
>
> But the application fails at OMX_GetHandle(). *pHandle is coming as
> zero.
> I am using the PV OMX core. I am just adding a new codec which is not
> supported by PV Opencore and test at PV test_app level.
>
> Can you please answer my below queries:
> 1. Do we need to change the pvplayer.cfg file? Bcoz i am using the PC
> omx_core itself.
> 2. Any other changes needs to be done for integrating a new component
> into Opencore?
>
> Please provide you valuable inputs.
>
> Let me know if need any additional informations.
>
> Thanks,
> Prajeesh
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Camera Preview Zoom in Android

2010-09-06 Thread nagaraj attimani
Please check is SetZoom implemented in HAL.
and also setparameters in HAL will be called whenever you trying to change
zoom level
In setparameters() in HAL, Setzoom should be called.
Setzoom() will send IOCTL command to native camera driver to set the zoom.

On Tue, Sep 7, 2010 at 9:58 AM, uday  wrote:

> Hi All,
> I've a problem with Camera Preview Zoom.. The methods present in
> Android 2.2, setZoom() is not working to zoom the preview.. Is there
> any another way to do the Zoom in android??
>
> Im using the code present in the Android API Demos..
> Is ther any body who has worked on implementing ZoomIn & ZoomOut and
> got succeed??
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en




-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] PV MediaRecorder native video recording error

2010-08-07 Thread nagaraj attimani
You are getting data callback from the camera
check further flow..Is it going till video encoder ?



On Sat, Aug 7, 2010 at 6:03 PM, Kerr  wrote:

> Dear PV engineer:
> I have try several days for this. We want to add video conference
> function in PV opencore, so we need to create video capture node in
> native mode, I try the following code to capture video,  My code is
> like this:
>   sp videoClient = new
> SurfaceComposerClient;
>   SurfaceComposerClient* videoClient2 = videoClient.get();
>
>   int x = atoi(argv[2]);
>   int y = atoi(argv[3]);
> // printf("press any key to do after new SurfaceComposerClient
> \n");
> // getchar();
>
>   sp vsurCtrl(videoClient->createSurface(pid, 0, x,
> y, PIXEL_FORMAT_OPAQUE, ISurfaceComposer::eFXSurfaceNormal|
> ISurfaceComposer::ePushBuffers));
>   SurfaceControl* vsurCtrl2 = vsurCtrl.get();
>   videoClient->openTransaction();
>   nState = vsurCtrl->setSize(x, y);
>   nState = vsurCtrl->setPosition(10, 10);
>   nState = vsurCtrl->setLayer(INT_MAX);
>   nState = vsurCtrl->show();
>   videoClient->closeTransaction();
>
>   mRecorder = new PVMediaRecorder();
>   mRecorder->init();
>   mRecorder->setAudioSource(AUDIO_SOURCE_CAMCORDER);
>   mRecorder->setVideoSource(VIDEO_SOURCE_CAMERA);
>   //sleep(1);
>   mRecorder->setOutputFormat(OUTPUT_FORMAT_THREE_GPP);
>
>   /
>   mRecorder->setAudioEncoder(AUDIO_ENCODER_AMR_NB);
>   mRecorder->setVideoEncoder(VIDEO_ENCODER_H263);
>   mRecorder->setVideoSize(x, y);
>   mRecorder->setVideoFrameRate(10);
>
>   mRecorder->setOutputFile(argv[1]);
>   mRecorder->setPreviewSurface(vsurCtrl->getSurface()-
> >getISurface2());
>
>   status_t retCode = mRecorder->prepare();
>
>   if(retCode < 0)
>   {
>   printf("prepare failed: %d\n", retCode);
>   IPCThreadState::self()->stopProcess();
>   return -1;
>   };
>
>   printf("press any key to start\n");
>   getchar();
>   mRecorder->start();
>
>sleep(10);
>mRecorder->stop();
>mRecorder->reset();
>//videoClient->destroySurface(vsurCtrl->getSurface()->ID());
>videoClient->dispose();
>
> Could anyone give me some guide on this?
>
> Regards!
>
>
>
>
> the result is
> 1, when run after prepare(), the screen could see preview movie,
> everything seems well.
> 2, but when run start(), the surface created freeze.
> 3, after stop, I check the recorded file, there is only audio, no
> video.
> 4, from the logcat, the following function is not called, here I past
> some normal output of Camera recording.
> 
> I/CameraInput(  508): postDataTimestamp called!
> I/CameraInput(  508): postWriteAsync
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en




-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: getting 'permission denied' when trying to write to a file

2010-08-01 Thread nagaraj attimani
Hi Paul,

By any chance, Are you belongs Colombo,Srilanka ?

Cheers
nagaraj

On Sun, Aug 1, 2010 at 6:38 PM, Kumar Bibek  wrote:

> Also, you cannot write to the root folder of the external storage. You
> will have to create your own folder as well, in addition to declaring
> the above mentioned premission. Have a look at the error message. I am
> sure, it would give you more hints.
>
> -Kumar Bibek
> http://tech-droid.blogspot.com
>
> On Aug 1, 5:41 pm, RichardC  wrote:
> > You are probably missing the "WRITE_EXTERNAL_STORAGE" permission from
> > your manifest.
> >
> > On Jul 30, 7:53 am, paul linto  wrote:
> >
> > > Hi Guys,
> >
> > > I am trying to take a dump of encoded data stream to a file.
> > > I had added the code to make the file dump in pvmf_omx_enc_node.cpp
> file, in
> > > the Fillbufferdoneprocessing () function.
> >
> > > But i am getting the error 'permission denied' for
> > > fopen("/sdcard/enc_bitstream.bin,"wb+"");
> > > what i need to do to enable the permission to write to sdcard
> >
> > > Regards,
> > > Linto
>
> --
> 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 email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Warm Regards,
Nagaraj

-- 
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: how to be paid by the market?

2009-10-29 Thread nagaraj attimani
Hi Disconnect,

Your are right ..There is some problem in Keyboard.

On Thu, Oct 29, 2009 at 8:08 PM, Disconnect  wrote:

>
> On Thu, Oct 29, 2009 at 10:24 AM, nagaraj attimani
>  wrote:
> > Nothing 2 worry..
> > Defn u will get gud money for u r app..
> > Good Luck :)
>
> It appears that your keyboard has broken, possibly due to the PEBKAC
> bug. Please turn your computer in at your local repair shop and a new
> one will be dispatched within 2-4 weeks.
>
> >
>


-- 
Warm Regards,
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: how to be paid by the market?

2009-10-29 Thread nagaraj attimani
Nothing 2 worry..
Defn u will get gud money for u r app..
Good Luck :)

On Thu, Oct 29, 2009 at 5:59 PM, MrChaz  wrote:

>
> The money is sent straight to my bank account so I guess that's a wire
> transfer.
>
> On Oct 28, 10:02 pm, shadow_of__soul 
> wrote:
>  > Hi,
> >
> > i'm interested to develop games for the android platform, but i have a
> > question that i haven't been able to answer.
> >
> > i'm from argentina, if i pay the $25 fee, i'm able to publish my app
> > in the store, but how i'm paid the revenue if i publish a paid app?
> > wire transfer? check?
> >
> > also, there is any other requirement to publish paid app's in the
> > store?
> >
> > Regards,
> > Shadow.
> >
>


-- 
Warm Regards,
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Unable to chmod sdcard: Read-only file system

2009-10-28 Thread nagaraj attimani
Try to launch emulator with sdcard and avd..
ex: emulator -avd avd_name -sdcard sdcardname



On Wed, Oct 28, 2009 at 11:44 AM, Nima  wrote:

>
>
> I have tried this option also.But there is no hope.
>
>
> On Oct 27, 6:59 pm, Pierre Henry  wrote:
> > Nima,
> >
> > Try a *chmod 0777 sdcard* instead...
> >
> > --
> > Pierre
> >
>


-- 
Warm Regards,
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: My application has died when I started to use Browser

2009-10-13 Thread nagaraj attimani
Can u attach the DDMS log here..

On Tue, Oct 13, 2009 at 4:35 PM, newra...@gmail.com wrote:

>
> My application is background application.It uses WIFI lock and
> INTERNET permission. It is doing some socket communication with a
> Remote Host PC and as well as with a local android application. It
> will start based on incoming SMS.
>
> While my application is running, I tried to use the browser
> application. Within a minute my application is getting crashed.(in
> DDMS log, I found the application process has died)
>
> And again I restarted my application, it is always getting crashed
> within a minute.
>
> I could not find the reason from the DDMS log.
>
> Someone can help me to figure out the problem...
>
> Thanks in advance.
>
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: MediaRecorder.VideoSource and MediaRecorder.VideoEncoder classes can't be resolved.

2009-04-08 Thread nagaraj attimani
U can check .. does andriod.jar libary has VideoSource & VideoEncoder  in
MediaRecorder class.
If it doesn't .. theni it seems till now it is not exposed to framework
layer..



On Tue, Apr 7, 2009 at 12:35 PM, Anji  wrote:

>
> Hello  fellow Android developers,
>
> I am developing sample Video Recorder  for Android.Following is My
> code snippet.
>
>   recorder=new MediaRecorder
> ();
>   recorder.setVideoSource
> (MediaRecorder.VideoSource.CAMERA);
>recorder.setAudioSource
> (MediaRecorder.AudioSource.MIC);
>recorder.setOutputFormat
> (MediaRecorder.OutputFormat.THREE_GPP);
>recorder.setVideoSize(176, 144); // QCIF
>recorder.setVideoFrameRate(30);
>recorder.setVideoEncoder
> (MediaRecorder.VideoEncoder.H263);
>recorder.setAudioEncoder
> (MediaRecorder.AudioEncoder.AMR_NB);
>//recorder.setOutputFile(getPath(context,
> path));
>recorder.prepare();
>recorder.start();
>
> but when i am trying to run in eclipse,am getting following errors.
> MediaRecorder.VideoSource can't be resolved.
> MediaRecorder.VideoEncoder can't be resolved.
>
> I am using android-sdk-windows-1.1_r1 as my android SDK,and didn
> update this from 1.0 instead i installed it freshly.
>
> I guess there might be some problem with the SDK.
>
> I request you all to help me out in this regard.
>
> Regards,
> Anji
>
>
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Force close msg for few seconds when application starts, why?

2009-03-13 Thread nagaraj attimani
UI thread should as simple as that..
complex opeartions may lead this  kind of issues

On Fri, Mar 13, 2009 at 5:05 PM, zeeshan  wrote:

>
> Hi Android Experts,
>
> i am having a force close Dialogue msg for few seconds when i run my
> application.
> can anyone tell me why is that and how can i resolve it.
> do i need to use thread to start my main activity?
>
> any solution?
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Reg: Camera application

2009-03-13 Thread nagaraj attimani
Can u summerize.. is testing going on emulator R device ??

On Fri, Mar 13, 2009 at 5:13 PM, alok Yadav
wrote:

>
> Hi Developers'
> Can you plz tell me ,How to make camera work for the android file system.
> When am i clicking camera application button ,only square blocks are
> commming in the
> LCD screen
> Please help me really needed.
>
> Thanks and regards
> Alok
>
>
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Sharing data across Activities

2009-03-13 Thread nagaraj attimani
Content Provider might sortout this issue ..

On Fri, Mar 13, 2009 at 7:18 PM, Tushar  wrote:

>
> Hi,
> I was looking out for ways to share data between various activities
> that one may need to create for his applications . Using "Parcel"  and
> Bundle one can do data exchange , but looks like  this is a bit
> cumbersome process specifically if you have to share large array
> objects with too many fields.
>
> As  android.app.Application maintains global state for the
> application , we can use this class to store global data and access it
> across activities.  Is this a good way ? Are there any implications on
> allocating large objects in the your class which extends from
> android.app.Application ?
>
> Is there any other better approach available ?
>
> --Tushar
>
>
>
>
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help me solve my Ambiguity regarding Activity

2009-02-24 Thread nagaraj attimani
Case 1: Activity is started using "action"
Action might be same for few activities.. User need 2 select an activity
depending on req.
Most of the time.. class name are not visible ..

Case 2 : Activity is started by refering a class name
As class name can be unique.

Intent resolver will resolve rqd intent action from list of avilable intents
in service manager. User need select if 2 activity may pop fopr same action.



On Tue, Feb 24, 2009 at 6:44 PM, gganesh  wrote:

>
> hi friends,
> What is the difference between starting an new Activity by case :1 and
> case: 2
>
> case : 1
>
>   Intent i= new Intent("com.android.google.Anyname")
>   startActivity(i);
>
> case: 2
>
>   Intent i = new Intent(this, newActivity.class);
>   startSubActivity(i, ACTIVITY_CREATE);
>
> what is the scenario which decides to chose between those two options
> to start an Activity
> Thanks
>
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Replace dialer application by installing another dialer app

2009-02-10 Thread nagaraj attimani
Your dialer apllication can have same intent as current one and increase the
priority of your application comapre existing one.

On Tue, Feb 10, 2009 at 6:26 PM, Shadakshari Hiremath wrote:

>
> Hi Android,
>
> We want to disable the default dialer application and install our own
> dialer application on phone.
> We want to know how we can disable the default dialer so that it
> doesn't listen for missed calls, incoming calls and also it doesn't
> gets launched by other application for making calls instead our
> application gets launched. Only our dialer application should be
> listening on it.
>
> We want to use same format as existing content URIs supported by
> default dialer in our own dialer application. Is this possible? If yes
> then how we can achieve it?
>
> We don't want to delete the call log application code or we don't want
> to remove it from build. We want to have default dialer in device. Our
> dialer application will be installed later may be by downloading from
> internet by end user.
>
> Regards,
> Shaddu
>
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Suggestion for Android Market

2009-02-09 Thread nagaraj attimani
yes.. this will make the android much more popular n at the same time
minimize the same applns developed by diff vendors



On Mon, Feb 9, 2009 at 8:26 PM, Teo  wrote:

>
> I think each app should have a link to its website in Android Market,
> as other gadget platforms have. Users can find out more about the app
> features this way...
>
> Thanks,
> Teo
> >
>


-- 
Best Regards
Nagaraj

--~--~-~--~~~---~--~~
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 email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---