Logcat error description : Button launch crashes app

后端 未结 3 395
故里飘歌
故里飘歌 2021-01-28 08:26

There was some permission constraint in manifest file .... I removed it but the application still crashes on button click....Rest of the buttons are working great..... It starte

相关标签:
3条回答
  • 2021-01-28 08:58

    You haven't declared NoteList activity in your manifest file.

    Please include this in your manifest.

    Hope it Helps!!

    0 讨论(0)
  • 2021-01-28 08:58

    Error here, You have not declared in proper way

    <activity android:name="NotesList" android:label="@string/title_notes_list">
    

    make it like this

    <activity android:name=".NotesList" android:label="@string/title_notes_list">
    

    Error in your package name your package name is hellog.diwesh.NugaBest but you declared in all activity like helog.diwesh.NugaBest change according to that.

    0 讨论(0)
  • 2021-01-28 09:02
    Unable to find explicit activity class {hellog.diwesh.NugaBest/helog.diwesh.NugaBest.NotesList}; have you declared this activity in your AndroidManifest.xml?
    

    It means that you forgot to declare your NotesList activity inside manifest file and if you declared then there would be problem with your packagename in declaration, please cross check activity & package name in your manifest file and confirm that you declared correctly.

    0 讨论(0)
提交回复
热议问题