master
kt 21 lines 419 Bytes
Raw
1 package com.plugin.admob.core
2
3 interface GenericAd {
4 val isLoaded: Boolean
5 get() {
6 Helper.Companion.NOT_IMPLEMENTED()
7 return false
8 }
9
10 fun load(ctx: Context?) {
11 Helper.Companion.NOT_IMPLEMENTED()
12 }
13
14 fun show(ctx: Context?) {
15 Helper.Companion.NOT_IMPLEMENTED()
16 }
17
18 fun hide(ctx: Context?) {
19 Helper.Companion.NOT_IMPLEMENTED()
20 }
21 }