Skip to content

Commit

Permalink
feat(admob-plus): add setDevMode (#3387)
Browse files Browse the repository at this point in the history
* feat(admob-plus): add setDevMode

fixes #3384 . add setDevode for admob-plus

* Update index.ts
  • Loading branch information
akshaydwivedi29 authored May 5, 2020
1 parent 61bbe39 commit e09592d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/@ionic-native/plugins/admob-plus/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ export class AdMob extends IonicNativePlugin {
return Promise.resolve();
}

@Cordova({ sync: true })
setDevMode(value: boolean): void {
return undefined;
}

on(event: string): Observable<any> {
return fromEvent(document, event);
}
Expand Down

0 comments on commit e09592d

Please sign in to comment.