I am having two classes in my android project so, should I mention two activity tags in my app manifest file or will it work without including the activity tag.
Although, my app is working fine but I think this creates error - Unfortunately, your app has stopped working.
it depends Which kind of classes you have.. if your class is extending
ActivityorActionBarActivityorAppCompatActivityor the class wich extends any of these, than you must define it inmanifests.xmlfile. otherwise if your class extends nothing or just extends view, then no need to define it inmanifests.xmlfile.