Skip to content

Instantly share code, notes, and snippets.

@strfle
strfle / GPSPlugin.java
Created April 12, 2013 03:43
Here is a plugin for PhoneGap Apache Cordova 2.1.0 or below that gets the GPS reliably. The built in navigator.geolocation does not work on the S3, HTC One, Note etc. So this is a native plugin to get that reliably everytime.
//package com.yourpackagename;
import java.util.List;
import org.json.JSONArray;
import org.json.JSONException;
import android.content.Context;
import android.content.Intent;
import android.location.Location;