[android-developers] java.lang.ClassNotFoundException

2012-05-23 Thread Ralph Bergmann | the4thFloor.eu
Hello, how can the following error happens? The app was build and exported via Eclipse. It has over 2300 installations but one user reports this error. java.lang.RuntimeException: Unable to instantiate application de.sportscheck.SportScheckApplication: java.lang.ClassNotFoundException: de.sports

Re: [android-developers] java.lang.ClassNotFoundException

2012-05-23 Thread TreKing
On Thu, May 24, 2012 at 1:22 AM, Ralph Bergmann | the4thFloor.eu < ra...@the4thfloor.eu> wrote: > It has over 2300 installations but one user reports this error. It's a fluke, likely caused by a bad install. Ignore it. Haven them re-install the app if you can. --

[android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-26 Thread nikhilesh
Hi Group, I created a project using the "support.v4" library. Now I am creating a *test project* for my main app. But when I try to run it gives me the exception "*W/ClassPathPackageInfoSource(551): Caused by: java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoney

[android-developers] java.lang.ClassNotFoundException: com.myapplauncher.App in loader dalvik.system.PathClassLoader@43735cf8

2011-10-20 Thread saex
I have problems launching my app, i get that exception when i try to launch it on emulator: > java.lang.ClassNotFoundException: com.myapplauncher.App in loader > dalvik.system.PathClassLoader@43735cf8 also i get this line in top of the exeption: `10-20 11:35:24.840: WARN/ dalvikvm(789): Link of c

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-26 Thread Mark Murphy
Make sure that you properly have the Android Support package attached to your project (e.g., android-support-v4.jar in your libs/ directory). On Sun, Aug 26, 2012 at 2:06 PM, nikhilesh wrote: > Hi Group, > > I created a project using the "support.v4" library. Now I am creating a test > project fo

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-27 Thread nikhilesh singh Tak
Hi Mark, Thanks for the reply. Yes I have checked that. In my main app project "android-support-v4.jar" is present in the libs folder. Also in build path I have marked the library as checked in "Order and Export" section. Even I tried it by adding the v4 jar in test project but that too didn't

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-27 Thread nikhilesh singh Tak
Hi Mark, Thanks for the reply. Yes I have checked that. In my main app project "android-support-v4.jar" is present in the libs folder. Also in build path I have marked the library as checked in "Order and Export" section. Even I tried it by adding the v4 jar in test project but that too didn't

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-27 Thread Mark Murphy
On Mon, Aug 27, 2012 at 11:06 AM, nikhilesh singh Tak wrote: > Yes I have checked that. > > In my main app project "android-support-v4.jar" is present in the libs > folder. Also in build path I have marked the library as checked in "Order > and Export" section. You should not need to do that. *A

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-27 Thread nikhilesh singh Tak
Hi Mark, Don that as well.. but same issue.. I am getting log as below 08-27 21:05:42.321: W/dalvikvm(28310): Link of class 'Landroid/support/v4/os/ParcelableCompatCreatorHoneycombMR2;' failed 08-27 21:05:42.331: W/ClassPathPackageInfoSource(28310): Cannot load class. Make sure it is in your apk

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-27 Thread Mark Murphy
As far as I can tell, there is no such class in the Android Support package. On Mon, Aug 27, 2012 at 11:42 AM, nikhilesh singh Tak wrote: > Hi Mark, > > Don that as well.. but same issue.. > > I am getting log as below > > 08-27 21:05:42.321: W/dalvikvm(28310): Link of class > 'Landroid/support/v

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-27 Thread Marina Cuello
I had a similar trouble with that class when using Proguard to obfuscate. It seems to be a private class on the compatibility package --you can see it but it's being used. If you're using Proguard, you can check if adding this line to your config helps: -keep class android.support.v4. { *; } Mari

Re: [android-developers] java.lang.ClassNotFoundException: android.support.v4.os.ParcelableCompatCreatorHoneycombMR2 in test project

2012-08-28 Thread rauf qureshi
can any body tell me how to make a post in this group for problem solution and please some one update me about payment gateway and its charges is apply to use this server please help me On Mon, Aug 27, 2012 at 8:36 PM, nikhilesh singh Tak < nikhileshsingh...@gmail.com> wrote: > Hi Mark, > >

Re: [android-developers] java.lang.ClassNotFoundException: com.myapplauncher.App in loader dalvik.system.PathClassLoader@43735cf8

2011-10-20 Thread Justin Anderson
I don't really see anything wrong with your XML... How are you launching it? Through ADB or Eclipse? Does your app show up in the list of all apps? *> Link of class 'Lcom/myapplauncher/App;' failed`* This is a little weird... What is Lcom? Or was that just a typo? Thanks, Justin Anderson MagouyaW