Skip to content

Commit

Permalink
Bump compileSdkVersion to 33
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswoo-stripe committed Aug 30, 2022
1 parent 445ddb3 commit 9ab5357
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ allprojects {

ext {
buildToolsVersion = "30.0.3"
compileSdkVersion = 32
compileSdkVersion = 33

androidxActivityVersion = '1.5.1'
androidxAnnotationVersion = '1.4.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sdk=30

2 changes: 2 additions & 0 deletions identity/src/test/resources/robolectric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sdk=30

Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ internal class PaymentMethodScreenTest {
}

private fun setContent(
supportedPaymentMethods: List<SupportedPaymentMethod> = SupportedPaymentMethod.allValues,
supportedPaymentMethods: List<SupportedPaymentMethod> =
SupportedPaymentMethod.values().toList(),
selectedPaymentMethod: SupportedPaymentMethod = SupportedPaymentMethod.Card,
primaryButtonState: PrimaryButtonState = PrimaryButtonState.Enabled,
errorMessage: ErrorMessage? = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal class ViewWidthAnimator(

it.addListener(
object : AnimatorListenerAdapter() {
override fun onAnimationEnd(animation: Animator?) {
override fun onAnimationEnd(animation: Animator) {
super.onAnimationEnd(animation)

view.updateLayoutParams {
Expand Down

0 comments on commit 9ab5357

Please sign in to comment.