Skip to content

Instantly share code, notes, and snippets.

@bkonyi
Created September 13, 2018 19:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkonyi/b632b4437400c82d46b1205988dd5b9a to your computer and use it in GitHub Desktop.
Save bkonyi/b632b4437400c82d46b1205988dd5b9a to your computer and use it in GitHub Desktop.
public class Application extends FlutterApplication
implements PluginRegistrantCallback {
@Override
public void onCreate() {
super.onCreate();
GeofencingService.setPluginRegistrant(this);
}
@Override
public void registerWith(PluginRegistry registry) {
GeneratedPluginRegistrant.registerWith(registry);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment