Skip to content

Commit

Permalink
feat(admob-plus): add setDevMode
Browse files Browse the repository at this point in the history
fixes danielsogl#3384 . add setDevode for admob-plus
  • Loading branch information
akshaydwivedi29 authored Apr 21, 2020
1 parent 3e0b075 commit f008450
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/@ionic-native/plugins/admob-plus/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ export class AdMob extends IonicNativePlugin {
setAppVolume(value: number): Promise<any> {
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 f008450

Please sign in to comment.