There are 2 files - one is AndroidManifest.xml , the other is config.xml .
The first file - AndroidManifest.xml - is used to configure information about your application, the main activity (Java class), which it uses to actually run, permissions, and more or less everything related to Android. This file is intended only for Android devices (not iOS, nor BlackBerry, etc.).
config.xml , on the other hand, is PhoneGap specific and contains information for setting up your PhoneGap project. You install plugins, allowed URLs that PhoneGap can access, and several other settings here.
source share