Skip to content

Commit

Permalink
Fix binding after bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasnlm committed Nov 28, 2023
1 parent bc8a4f0 commit ec7a6f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class PlayGamesButtonView : FrameLayout {
constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)

val binding: ViewPlayGamesButtonBinding

init {
val layoutInflater = LayoutInflater.from(context)
binding = ViewPlayGamesButtonBinding.inflate(layoutInflater, this, true)
}

val binding: ViewPlayGamesButtonBinding
}
9 changes: 4 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ wearMinSdk = "25"
compileSdk = "34"

acra = "5.11.2"
activityKtx = "1.8.0"
activityKtx = "1.8.1"
amplitude = "2.32.1"
appcompat = "1.6.1"
billingKtx = "6.0.1"
billingKtx = "6.1.0"
bugsnagAndroid = "5.31.2"
constraintlayout = "2.1.4"
coreKtx = "1.12.0"
Expand Down Expand Up @@ -42,9 +42,8 @@ robolectric = "4.5.1"
runner = "1.5.2"

# Plugins
bugsnag = "8.1.0"
android = "8.1.3"
kotlin = "1.9.10"
android = "8.1.4"
kotlin = "1.9.20"
googleServices = "4.4.0"
wear = "1.3.0"

Expand Down

0 comments on commit ec7a6f8

Please sign in to comment.