I am working android application.when i run that application below error occred.please help me……
01-20 20:39:02.955: WARN/dalvikvm(5690): VFY: arbitrarily rejecting large method (regs=93 count=23019)
01-20 20:39:02.955: WARN/dalvikvm(5690): VFY: rejected Lez/com/Action_module_screen;.da ()V
01-20 20:39:02.955: WARN/dalvikvm(5690): Verifier rejected class Lez/com/Action_module_screen;
01-20 20:39:02.955: INFO/System.out(5690): verify Errorez.com.Action_module_screen
Here is a link to a similar question.
Your problem is a (93 * 23019) > 2^21 (2^21 = 2097152)
I believe ths short answer is: your method is too large, you need to optimize it to be smaller so that it will fit.