[android-developers] Re: Application Crash

2013-04-03 Thread TWProgrammers
A... I see my mistake. I am creating 2 apps that work together... Thanks! On Tuesday, April 2, 2013 6:57:32 PM UTC-5, RichardC wrote: Error is: Unable to instantiate receiver com.TWP.Project.TDC.SMSReceive Source package is: com.TWP.Project.IES Source class is: SMSReceiver

[android-developers] Re: Application Crash

2013-04-02 Thread TWProgrammers
Did you not read the code? On Monday, April 1, 2013 1:05:39 PM UTC-5, TWProgrammers wrote: receiver android:name=com.TWP.Project.TDC.SMSReceiver android:enabled=true intent-filter android:priority=2147483647 action

[android-developers] Re: Application Crash

2013-04-02 Thread RichardC
Error is: Unable to instantiate receiver com.TWP.Project.TDC.SMSReceive Source package is: com.TWP.Project.IES Source class is: SMSReceiver com.TWP.Project.TDC.SMSReceive != com.TWP.Project.IES.SMSReceiver The class it is trying to instantiate does not match your source file package name. On

[android-developers] Re: Application Crash on Internet Connection Loss

2012-10-19 Thread ravi .
Use this code. This will work public static boolean chkInternetConnection(Context cxt) { boolean isAvailable = false; ConnectivityManager conMgr = (ConnectivityManager) cxt.getSystemService(Context.CONNECTIVITY_SERVICE); if (conMgr.getActiveNetworkInfo() != null

[android-developers] Re: Application Crash on Internet Connection Loss

2012-10-19 Thread bob
Why don't you see what Exception gets thrown and handle it? Most apps will pop up a Retry button when there's no Internet. On Friday, October 19, 2012 6:13:52 AM UTC-5, Spike wrote: Hi Guys, I am facing problem in handling exception. My application is an internet based application.

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-25 Thread GJTorikian
Kevin— Thanks very much for your clear and quick response. I was able to extend CrashReportingApplication and override the necessary methods. I'm running a Cliq still on 1.5; I'll be sure to send in thoughts/features. Thanks— Garen On May 24, 3:43 pm, Kevin Gaudin kevin.gau...@gmail.com wrote:

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-24 Thread Mathias Lin
Hi Kevin, I tried to include acra v2 following the HowTo2, but get a NullPointerException when acra tries to read the crash data. I filed a bug report here: http://code.google.com/p/acra/issues/detail?id=2 (I just tried to use the default silent mode for now.) Regards, Mathias On May 20, 8:35 

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-24 Thread GJTorikian
Hi Kevin— My app already has a class that extends Application, which is defined in android:name in the Manifest. It seems that if I try to replace it with the ACRA-created class (I called it CrashReporter), the app crashes on first run, then runs fine after that. If I make CrashReporter an inner

Re: [android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-24 Thread Kevin Gaudin
Hello Garen, You should be able to make your existing Application class extend org.acra.CrashReportingApplication in replacement of extending Application. Just make sure to call super.onCreate() at the beginning of your own existing onCreate() override, and add other needed methods like

Re: [android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-24 Thread Kevin Gaudin
Hi, Just to let you know that I just published acra-2.0.3 with the addition of a handleSilentException(Throwable) method to force a silent reporting even if the application is configured in Toast or Notification reporting mode. Kevin On Fri, May 21, 2010 at 3:48 PM, Justin Edwards

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-21 Thread laphroaig15
Built a similar solution a few months ago that integrates with Google and Atlassian issue trackers. heroicefforts.github.com/Viable. On May 20, 6:46 pm, Kevin Gaudin kevin.gau...@gmail.com wrote: Hello Justin, handleException() handles your caught exceptions exactly the same way uncaught

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-21 Thread Justin Edwards
Thanks for the reply Kevin, I guess my feedback would be to add an option within your API to send a silent report. :) Thanks again! Justin On May 20, 6:46 pm, Kevin Gaudin kevin.gau...@gmail.com wrote: Hello Justin, handleException() handles your caught exceptions exactly the same way

Re: [android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-21 Thread Kevin Gaudin
I agree with you : http://code.google.com/p/acra/issues/detail?id=1 ;-) Kevin On Fri, May 21, 2010 at 3:48 PM, Justin Edwards howfar...@gmail.com wrote: Thanks for the reply Kevin, I guess my feedback would be to add an option within your API to send a silent report. :) Thanks again!

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-20 Thread Kevin Gaudin
Thanks Tobias for using the lib ! All the sources are available on GoogleCode's SVN: http://code.google.com/p/acra/source/checkout. The main help we need now is developers to test the v2 stability with its different notification modes and on different android hardware/ versions so that we can go

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-20 Thread Justin Edwards
I have also added the logging into my application. Within 10 minutes I had my first bug report.. :( (Even before I got the update installed on my device.) I had no problems getting everything added into my application again thanks to your HowTo. (Only issue I had was uploading the csv file...

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-20 Thread Kevin Gaudin
Hello Justin, handleException() handles your caught exceptions exactly the same way uncaught exceptions are handled, so if you configured ACRA to notify the user when an error occurs, you will issue a notification on each call to this method. Sorry for the Import/Upload confusion... For me the

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-19 Thread Kevin Gaudin
Hello, Just to inform you that there was a missing configuration item in the usage guide for v2 when using the status bar notification mode. You have to add an activity (provided by ACRA) with specific attributes in your android manifest. The usage guide for v2 has been updated:

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-19 Thread Clankrieger
Hi Kevin, I included ACRA in my app - it was easy to implement and your HowTo is absolutely excellent. I already got two crash reports that gave me a much better glue than the usual crashes on foo-phone-1-star- comments. :) I'm eager to take a look into the sources as well, they should be

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-17 Thread Fred Grott(Android Expert, http://mobilebytes.wordpress.com)
Thanks Kevin this should be useful On May 17, 11:39 am, Kevin Gaudin kevin.gau...@gmail.com wrote: Hello, I would like to introduce you to a library called ACRA (Application Crash Reporting for Android).http://acra.googlecode.com The goal of this library is to provide android applications

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-17 Thread appforce.org
That's cool! I've implemented similar one that sends the reports gzip- ed as e-mail attachment. On May 17, 7:39 pm, Kevin Gaudin kevin.gau...@gmail.com wrote: Hello, I would like to introduce you to a library called ACRA (Application Crash Reporting for Android).http://acra.googlecode.com

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-17 Thread Yahel
Excellent job !! Can we use v2 in our devs or are you going to sell it for a fee ? What licence do you release it under ? Superb use of google docs for a google framework :D Yahel On 17 mai, 18:39, Kevin Gaudin kevin.gau...@gmail.com wrote: Hello, I would like to introduce you to a library

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-17 Thread String
On May 17, 8:39 pm, Yahel kaye...@gmail.com wrote: What licence do you release it under ? The project says it's Apache-licensed. Unless they're planning a change of license for v2, we should be OK. String -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Application Crash Reporting made easy - needs testers

2010-05-17 Thread Kevin Gaudin
It is and will stay published as an open source project under Apache license. So you are free to use it in any app, free or not, open source or not. Please test it and let us know your feedback/issues ! ;-) Kevin On 17 mai, 22:18, String sterling.ud...@googlemail.com wrote: On May 17, 8:39 

[android-developers] Re: Application Crash..:(

2010-01-20 Thread Iroid
one more point I missed: I get this very often when I change the orientation and switch the activities quickly. On Jan 20, 4:11 pm, Iroid irfan.f.k...@gmail.com wrote: Hello Everyone,                  This is another Android programming puzzle I am having hard time to solve.                

[android-developers] Re: Application crash when instantiating ViewGroup in GridView

2008-10-24 Thread Romain Guy
This is not a limitation of GridView. Could you post the entire error/stack trace you are getting when you do this? Your code is using the wrong LayoutParams. You need to use GridView.LayoutParams, not LinearLayout.LayoutParams. On Thu, Oct 23, 2008 at 9:14 PM, [EMAIL PROTECTED] [EMAIL

[android-developers] Re: Application crash when instantiating ViewGroup in GridView

2008-10-24 Thread [EMAIL PROTECTED]
Thank you. The LayoutParams was the issue. Changing from LinearLayout.LayoutParams to GridView.LayoutParams solved everything. Here is my stack trace for future troubleshooters reference: W/dalvikvm( 560): threadid=3: thread exiting with uncaught exception (group=0x40010e28) E/AndroidRuntime(