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 > > --

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

[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-devel

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. > >

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 a

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

2010-09-21 Thread nagaraj attimani
> > 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 >

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 C

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 t

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 ..

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 wr

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 n

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 pr

[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

[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 devel

[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.

[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 >

[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 Rec

[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 res

[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 > L

[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 t

[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 rq

[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 applicati

[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 mor