I want to show the user geo location on Android:
navigator.geolocation.getCurrentPosition
It doesn't work on Android, I read on the web that I need to allow permissions in the file AndroidMainfest.xml like this:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sample.someapp"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>
But this is related only for an Android app, not a mobile site. What should I do? I tried adding the file like that:
<xml id="equipdet" src="AndroidMainfest.xml" async="false"></xml>
It's not working