Skip to content

Commit

Permalink
Android: define LocationManager interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Agontuk committed Mar 15, 2021
1 parent 2bdd835 commit 5621598
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.agontuk.RNFusedLocation;

public interface LocationManager {
void getCurrentLocation(LocationOptions locationOptions, LocationListener locationListener);

boolean onActivityResult(int requestCode, int resultCode);

void requestLocationUpdates(LocationOptions locationOptions, LocationListener locationListener);

void removeLocationUpdates();
}

0 comments on commit 5621598

Please sign in to comment.