Creating Stripe Customer - Cannot Resolve Symbol Apikey
In Android Studio, even though I'm copying and pasting the code directly from the stripe docs, I'm getting the 'cannot resolve symbol apiKey' error from this line: Stripe.apiKey =
Solution 1:
You need to import the Stripe API library. Most IDEs should automatically tell you to add it but in case it does not add this line to the top
import com.stripe.Stripe;
Post a Comment for "Creating Stripe Customer - Cannot Resolve Symbol Apikey"