We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12da195 commit 3e92ce2Copy full SHA for 3e92ce2
plugins/geolocation/android/src/main/java/Geolocation.kt
@@ -91,8 +91,6 @@ public class Geolocation(private val context: Context) {
91
val lowPrio = if (networkEnabled) Priority.PRIORITY_BALANCED_POWER_ACCURACY else Priority.PRIORITY_LOW_POWER
92
val prio = if (enableHighAccuracy) Priority.PRIORITY_HIGH_ACCURACY else lowPrio
93
94
- Logger.error(prio.toString())
95
-
96
val locationRequest = LocationRequest.Builder(10000)
97
.setMaxUpdateDelayMillis(timeout)
98
.setMinUpdateIntervalMillis(5000)
@@ -145,4 +143,4 @@ public class Geolocation(private val context: Context) {
145
143
146
144
return lastLoc
147
}
148
-}
+}
0 commit comments