Zubin Raja

Results 14 comments of Zubin Raja

Facing same issue. any solution on this

@MutableLoss Thank you. will try to register real device as test device in Admob. But I am facing the issue in emulator! Which is default test device. Also, the banner...

Thanks @rahulje9 here is my code AdMobInterstitial.setAdUnitID('xxxxxxxx'); AdMobInterstitial.setTestDevices([AdMobInterstitial.simulatorId]); AdMobInterstitial.requestAd().then(() =>{ AdMobInterstitial.showAd(); })

@rahulje9 Weill in android everything is working cool. in ios facing issue with only interstitial. rest like banner, reward, native ads working cool

Tried reward video ads, with the same logs you have kept. And getting below result. All events happens without actual ad is displayed! [Wed Dec 16 2020 02:09:57.242] LOG AdMobRewarded...

New finding to the original issue. observe the code `componentDidMount() { AdMobRewarded.setAdUnitID(''); AdMobRewarded.setTestDevices([AdMobRewarded.simulatorId]); AdMobRewarded.requestAd(); }` `showVideoAd(){ AdMobRewarded.showAd(); AdMobRewarded.addEventListener('adLoaded', () => {console.log('AdMobRewarded => adLoaded') if(this.state.displayVideoAd === true) return; console.log("show ad"); AdMobRewarded.showAd();...

export class Socket_TEST extends Socket { constructor() { super({ url: ', options: {"rememberUpgrade":true, "transports":["websocket","polling"], "secure":true,"rejectUnauthorized":true, "autoConnect":false } }); } init(token){ this.ioSocket.query = {token:token}; } } //call socket init and then...

@Injectable() export class Socket_Test extends Socket { constructor() { super({ url: '', options: {"rememberUpgrade":true, "transports":["websocket","polling"], "secure":true,"rejectUnauthorized":true, "autoConnect":false, "query":"token=" } }); } init(token){ this.ioSocket.query = {token:token}; } } call function this.socket.init();...

Facing same issue for android 10+ SDK 30. As per doc error:1 refers to MediaError.MEDIA_ERR_ABORTED = 1

for android instead of this.file.externalRootDirectory try this.file.externalDataDirectory. it works for me. For android and iOS this directory works for me this.global.G_ExternalDirectory = this.platform.is('ios') ? this.file.dataDirectory : this.file.externalDataDirectory; in addition to...