Ionic Native Geocoder Does not work

The native geocoder plugin (https://github.com/sebastianbaar/cordova-plugin-nativegeocoder) does not work. Whenever I am building my Application for my Android device, the plugin does not work. I tried to deep dive in the plugin and added some log messages in the Java file to check if the control was reaching the java classes. I could not find the log messages and so, it might not even reach there.

This is the code I have been using :

import { NativeGeocoder, NativeGeocoderResult, NativeGeocoderOptions } from '@ionic-native/native-geocoder/ngx';

constructor(private nativeGeocoder: NativeGeocoder) { }

...

let options: NativeGeocoderOptions = {
    useLocale: true,
    maxResults: 5
};

this.nativeGeocoder.reverseGeocode(52.5072095, 13.1452818, options)
  .then((result: NativeGeocoderResult[]) => console.log(JSON.stringify(result[0])))
  .catch((error: any) => console.log(error));

Please help me. I am stuck at this, and need a solution urgently.

Did you got any solution?? Am also getting same error. Have tried uninstalling/installing plugin few times but error persists. Error am getting is:

ERROR TypeError: Object(...) is not a function
    at NativeGeocoder.reverseGeocode (index.js:27)
    at SafeSubscriber.dev_name [as _next] (dashboard.ts:175)
    at SafeSubscriber.__tryOrUnsub (Subscriber.js:242)
    at SafeSubscriber.next (Subscriber.js:189)
    at Subscriber._next (Subscriber.js:129)
    at Subscriber.next (Subscriber.js:93)
    at MapSubscriber._next (map.js:85)
    at MapSubscriber.Subscriber.next (Subscriber.js:93)
    at XMLHttpRequest.onLoad (http.js:1591)
    at t.invokeTask (polyfills.js:3)

Any help really appreciated.