Reputation: 2871
Im trying to make a Xamarin app from this guide containing a credit card payment but it cant find (Almost) any of the types. Is this guide pure fantasy or (more likely) am I mistunderstanding something? I have downloaded the Stripe.Net nuget-package and using all Stripe namespaces I can find. The Shortcut "Ctrl + ." does not help. What Im I missing
(Never ming the PUBLISHABLE_KEY, thats my own constant,I cut the definiton out from the example)
Upvotes: 0
Views: 158
Reputation: 7198
The guide you're following is using an older version of the stripe-dotnet library, and in the latest releases many types were renamed, e.g. StripeTokenCreateOptions is now TokenCreateOptions.
Upvotes: 1