0

Prior to uploading my signed APK to the playstore, I installed that on my phone. But it keeps on crashing saying class not found (I am having one class that extends Application). So I have this in my Manifest file:

<application
    android:name="Packagename.GlobalApplication"

I have already tried almost everything that I found on google regarding this issue and already wasted many hours.

I tried the following

  • "fix project properties"
  • clean and rebuild project
  • deleting gen and bin folders and then again rebuild
  • I don't have proguard enabled
  • Restarting eclipse
  • Checking manifest for correct package and application name

But Nothing really helped me !

And I have done this before for the same application before 4 days and it was working fine. Then I did some changes and again tried to export the signed application, but its not working now.

Please someone help me out.

Bunny
  • 576
  • 4
  • 19

1 Answers1

-1

I think you are obfuscated your code while export signed apk refer this link

Android Proguard - ClassNotFoundException

Community
  • 1
  • 1