[admob][android] Implement VideoOptions + AdRequest into all advert types

This commit is contained in:
Elliot Hesp
2017-05-31 16:33:08 +01:00
parent 7ef43d9c02
commit 5a9a7ea556
12 changed files with 322 additions and 330 deletions

View File

@@ -0,0 +1,17 @@
export default class VideoOptions {
constructor() {
this._props = {
startMuted: true,
};
}
build() {
return this._props;
}
setStartMuted(muted: boolean = true) {
this._props.startMuted = muted;
return this;
}
}