Hi I have Java android application, and integrate stripe and use stripe confirmPayment method. I get the error java.lang.IllegalArgumentException: Parameter specified as non-null is null: method kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull
Asked
Active
Viewed 247 times
1

matthias_h
- 11,356
- 9
- 22
- 40

Novruz Ceferov
- 47
- 5
-
2Does this answer your question? [java.lang.IllegalArgumentException : Parameter specified as non-null is null: method kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull](https://stackoverflow.com/questions/47849219/java-lang-illegalargumentexception-parameter-specified-as-non-null-is-null-me) – MT756 Mar 06 '20 at 15:18
-
hi this question but my project java codes not kotlin – Novruz Ceferov Mar 06 '20 at 15:19
-
The error is exactly what the message says, you're passing null into the confirmPayment method and you should not be. – mikeb Mar 06 '20 at 15:21
-
I think mikeb is right, but would also be interested to see your code here. Can you add that to your question for more context? – cjav_dev Mar 06 '20 at 16:55