For APP development and google api, only ROOT mobile phones are used. For non-ROOT mobile phones, apk cannot be installed. Therefore, two versions of apk are required. It is difficult to maintain two sets of programs. The following uses enabling/disabling google map as an example to describe how to enable/disable GOOGLE APIs through configuration.
To enable or disable the google map function through configuration, you only need three simple steps.
Steps for disabling GoogleMap Functions
1. Modify project. properties.
Target = android-15
# Target = Google Inc.: Google APIs: 15
2. comment out the following elements in the Manifest configuration file:
<! -- <Uses-library android: name = "com. google. android. maps"/> -->
3. ADD maps. jar reference. As shown in:
How to enable GoogleMap
1. Modify project. properties.
# Target = android-15
Target = Google Inc.: Google APIs: 15
2. Add a configuration file for Manifest
<Uses-library android: name = "com. google. android. maps"/>
3. REMOVE maps. jar references.