androidmanifest Node
This address: Http://blog.csdn.net/caroline_wendy
Main root node of androidmanifest:
USES-SDK: using the SDK version,Minimum SDK version (minsdkversion): API compatibility prevents older versions from using a higher API, making selections based on the number of users created. target SDK version (targetsdkversion): Set to the latest version while upgrading the Android SDK Build-tools, the latest version. Note: Abandoned, integrated into Gradle, set rules unchanged.
uses-configuration: Select the input configuration,The app should support any input configuration, which is not normally required.
uses-feature: Select input hardware functions, such as camera, NFC, etc.non-special class app, do not need to specify the input hardware function, generally do not need.
Supports-screens: provides screen size,the app can be adapted to any size through the resource file, which is not normally required.
supports-gl-texture: provides the GL texture compression form;
uses-permission: use permissions,app requires permissions, corresponding to different APIs, if missing, will cause the app to crash and error.
Permission: permission to create a permission definition.
Application: application, the core node, choose to use the Name property, extend the application's state class,The four components are registered in: Activity, service, provider, receiver.
uses-library: Use the app's shared library, such as Google Maps.
Android-androidmanifest node