Skip to content

Commit

Permalink
Adds missing JvmSynthetic (#441)
Browse files Browse the repository at this point in the history
* adds missing JvmSynthetic

* also synthetizes set
  • Loading branch information
vegaro authored Jan 12, 2022
1 parent 620c520 commit 18469f4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class Purchases @VisibleForTesting(otherwise = VisibleForTesting.PRIVATE) intern
private val dispatcher: Dispatcher,
private val identityManager: IdentityManager,
private val subscriberAttributesManager: SubscriberAttributesManager,
@JvmSynthetic internal var appConfig: AppConfig
@set:JvmSynthetic @get:JvmSynthetic internal var appConfig: AppConfig
) : LifecycleDelegate {

/** @suppress */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ open class PurchasesConfiguration(builder: Builder) {
}

open class Builder(
internal val context: Context,
internal val apiKey: String
@get:JvmSynthetic internal val context: Context,
@get:JvmSynthetic internal val apiKey: String
) {

internal var appUserID: String? = null
internal var observerMode: Boolean = false
internal var service: ExecutorService? = null
internal var store: Store = Store.PLAY_STORE
@set:JvmSynthetic @get:JvmSynthetic internal var appUserID: String? = null
@set:JvmSynthetic @get:JvmSynthetic internal var observerMode: Boolean = false
@set:JvmSynthetic @get:JvmSynthetic internal var service: ExecutorService? = null
@set:JvmSynthetic @get:JvmSynthetic internal var store: Store = Store.PLAY_STORE

fun appUserID(appUserID: String?) = apply {
this.appUserID = appUserID
Expand Down

0 comments on commit 18469f4

Please sign in to comment.