Re: [android-developers] Multiple build created using single library project are not working

2012-07-13 Thread Tushar Lal
LOGCAT OUTPUT: 07-13 15:23:23.954: E/AndroidRuntime(655): FATAL EXCEPTION: main 07-13 15:23:23.954: E/AndroidRuntime(655): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.paulinrio.radio/com.paulinrio.radio.OnAir}: java.lang.NullPointerException 07-13 15:23:23.954:

Re: [android-developers] Multiple build created using single library project are not working

2012-07-13 Thread imran ali
Hi Log cat indicate that you have nullpointer exception on line number 302 of your OnAir.java class file. Check in file, what are you using on 302 line number? and is that proper instantiated before use? Regards Imran Ali On Friday, July 13, 2012 4:05:53 PM UTC+5:30, Tushar Lal wrote:

Re: [android-developers] Multiple build created using single library project are not working

2012-07-13 Thread Tushar Lal
It is having a button which has already been declared. On Fri, Jul 13, 2012 at 4:34 PM, imran ali imran...@gmail.com wrote: Hi Log cat indicate that you have nullpointer exception on line number 302 of your OnAir.java class file. Check in file, what are you using on 302 line number? and is

[android-developers] Multiple build created using single library project are not working

2012-06-29 Thread Tushar Lal
Hi, I have created a library project containing a service. When I first build it and install it on my phone it works fine, but when I create the second build using the same library project and install it on my phone, the first build works fine but the second one crashes. Also when I run the

Re: [android-developers] Multiple build created using single library project are not working

2012-06-29 Thread Justin Anderson
Can anyone tell me what am I doing wrong. Well, for starters, you didn't really give us any information to help you solve the problem. But, for the crash, take a look at the logcat output... It usually gives some pretty good information about the cause of a crash. Thanks, Justin Anderson