Rahul Mishra
Rahul Mishra

Reputation: 4583

Tipsi stripe not working with android react native

I am working in RN 0.57.1 and because of stripe latest updates i need to upgrade my stripe package. App is working fine with iOS build but the android build failed regular, I am totally confused here how to fix this.

Here is my build.gradle code:

ext {
      buildToolsVersion = "28.0.3"
      minSdkVersion = 19
      compileSdkVersion = 28
      targetSdkVersion = 27
      supportLibVersion = "28.0.0"
      googlePlayServicesAuthVersion = "17.0.0"
    }

Here is Error:

Task :app:processDebugResources FAILED

FAILURE: Build failed with an exception.

Please let me know if anyone can help me into this...Thanks!

Upvotes: 0

Views: 2550

Answers (1)

Mike Sheck
Mike Sheck

Reputation: 41

I solved this on the latest version of RN using a very similar set up as you. https://github.com/tipsi/tipsi-stripe/issues/504#issuecomment-583566852

Upvotes: 1

Related Questions