Home > database >  kotlin- PaymentSessionConfiguration
kotlin- PaymentSessionConfiguration

Time:10-20

Hello I am trying to update stripe but when I have to call PaymentSessionConfig my code blocks because the companion of the PaymentSessionConfig class is in private, I cannot modify the class because it is in read only, here is the line :

mPaymentSession = PaymentSession (activity = summaryActivity, config = PaymentSessionConfig)

and the error message I have :

Cannot access 'Companion': it is private in 'PaymentSessionConfig'
Type mismatch.
Required:
PaymentSessionConfig
Found:
PaymentSessionConfig.Companion

CodePudding user response:

Can you share the details of what versions of the SDK you're updating from and to? The migration docs cover a lot of details changes for various versions.

Is it possible you mean to reference some paymentSessionConfig, or what is your config here?

See this example implementation using the PaymentSessionConfig.Builder() (github)

  • Related