Can anybody explain me in simple words what is the use of Manifest file and R.java file in android.
Why do we need these files while making an application?
AndroidManifest.xml Manifest file for an android application is a resource file which contains all the details needed by the android system about the application. It is a key file that works as a bridge between the android developer and the android platform. It helps the developer to pass on functionality and requirements of our application to Android. This is an xml file which must be named as AndroidManifest.xml and placed at application root. Every Android app must have AndroidManifest.xml file. For more info check this link: https://javapapers.com/android/android-manifest/