[android-developers] Re: java.lang.VerifyError -- in Android

2009-02-23 Thread Maddy
Hi Fadden, Thanks for your reply. I had changed the signature of the method and now everything works properly. With this excercise I had learned few things about 'dexdump', thanks a lot for your help. On Feb 20, 11:04 pm, fadden fad...@android.com wrote: On Feb 20, 1:29 am, Maddy

[android-developers] Re: java.lang.VerifyError -- in Android

2009-02-20 Thread Maddy
Hi Fadden, Thanks for your information. The actual file names are a.java --- Nullable.java b.java --- AbstractServiceArbiter.java I have done dexdump -d my application (AndJOSCAR) and got AndJOSCAR.apk.dump file. I have opened that file using Ultraedit (Text Editor tool) to look for any

[android-developers] Re: java.lang.VerifyError -- in Android

2009-02-20 Thread fadden
On Feb 20, 1:29 am, Maddy malli.ar...@gmail.com wrote: I have done dexdump -d my application (AndJOSCAR) and got AndJOSCAR.apk.dump file. I have opened that file using Ultraedit (Text Editor tool) to look for any useful information. I searched for addRequestImpl and I could not find any

[android-developers] Re: java.lang.VerifyError -- in Android

2009-02-19 Thread fadden
On Feb 19, 10:51 am, Maddy malli.ar...@gmail.com wrote: I am getting java.lang.VerifyError even though I am compiling all code in Android platform and I do not use any external jars. The details are follows, [...]

[android-developers] Re: java.lang.VerifyError in Android again

2008-12-08 Thread fadden
On Dec 5, 10:56 am, Claudio Veas [EMAIL PROTECTED] wrote: I was wondering if anybody knows which are the classes/interfaces/ fields/methods not supported by Android because Im getting a Verify error and I cannot identify which is the part of the class that is causing it. The output from adb

[android-developers] Re: java.lang.VerifyError in Android again

2008-12-06 Thread AlCapwn
I was getting this yesterday, My code was something like this: mainActivity.java: //all the usual stuff here, onCreate, etc boolean ssl = getSettingFromPrefs(); //not a real method, just an example Server s = new Server(host, port, ssl); new Thread(s).start(); Server.java //all the usual

[android-developers] Re: java.lang.VerifyError in Android again

2008-12-05 Thread jacek
You need to give us more details on the exact verify error On Dec 5, 1:56 pm, Claudio Veas [EMAIL PROTECTED] wrote: I was wondering if anybody knows which are the classes/interfaces/ fields/methods not supported by Android because Im getting a Verify error and I cannot identify which is the

[android-developers] Re: java.lang.VerifyError in Android again

2008-12-05 Thread Claudio Veas
Yeah the problem is that the file that has this issue is internal of the company that I work for and I cannot show it in a public space so that was why I was so not specific about the bug. Any way if you know which classes/methods/etc cause these kinds of problems Ill apreciate it. Thanks again