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
You haven't declared NoteList activity in your manifest file.
Please include this in your manifest.
Hope it Helps!!
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.
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.