Phonegap geolocation plugin is not adding for android
android, cordova, phonegap-plugins
Solution
The native code for Android Geolocation was removed, see the deprecation bug. This was because the native implementation was buggy and the native browser geolocation works fine. Since Cordova (Phonegap)'s goal is to not exist, it was only a matter of time until this was removed. You can use Geolocation just like you normally would, it just won't use the native code and instead rely on the browser version.
If you look in the plugin xml file, you will see that there is still some lines in there about Android. This is so that `cordova plugin add org.apache.cordova.geolocation` will correctly copy in the needed permissions to run on Android.
Problem
Geolocation I am trying to get geolocation details , i have added geolocation plugin using cordova command line ``` $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git $ cordova plugin rm org.apache.cordova.core.geolocation ``` Application created using cordova commandline The Command-Line Interface After adding plugin through command line android plugin is missing in the following screenshot android is missing Can anybody please help me ?