Skip to content

Commit

Permalink
fixed some modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
yamin8000 committed May 19, 2023
1 parent 0ca042d commit 3c25658
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import androidx.compose.ui.viewinterop.AndroidView
import io.github.yamin8000.dooz.R

@Composable
fun TapsellAdContent(
internal fun TapsellAdContent(
modifier: Modifier = Modifier,
onCreated: (ViewGroup) -> Unit,
onUpdate: (ViewGroup) -> Unit
Expand Down
6 changes: 3 additions & 3 deletions app/src/irMarket/java/io/github/yamin8000/dooz/ad/AdHelper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ import kotlinx.coroutines.suspendCancellableCoroutine
import kotlin.coroutines.resume
import kotlin.coroutines.suspendCoroutine

object AdHelper {
internal object AdHelper {

suspend fun showTapsellAd(
internal suspend fun showTapsellAd(
activity: Activity,
adId: String,
adView: ViewGroup?
Expand All @@ -58,7 +58,7 @@ object AdHelper {
})
}

suspend fun requestTapsellAd(
internal suspend fun requestTapsellAd(
activity: Activity
) = suspendCancellableCoroutine { cancellableContinuation ->
TapsellPlus.requestStandardBannerAd(
Expand Down

0 comments on commit 3c25658

Please sign in to comment.