• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Manifest

Hi i have 3 classes in 3 packages and i got a error as "Default Activity not found", will any one pl

  • regarding packages

    Votes: 0 0.0%
  • regarding manifest

    Votes: 0 0.0%

  • Total voters
    0
Hi i have 3 classes in 3 packages and i got a error as "Default Activity not found", will any one please how to declare packages in manifest file
 

Attachments

  • manifest.PNG
    manifest.PNG
    32.7 KB · Views: 65
  • package.PNG
    package.PNG
    7.6 KB · Views: 65
What's the full package name of the LoginActivity class? You need to use that in your manifest

Code:
<activity
       android:name="com.your.package.name.LoginActivity"
       ...

So replace "com.your.package.name" with your full package name
 
Back
Top Bottom