What is manifest file in Android?

后端 未结 6 1674
Happy的楠姐
Happy的楠姐 2021-02-19 13:33

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?

6条回答
  •  走了就别回头了
    2021-02-19 13:51

    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/

提交回复
热议问题