You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to upgrade RN and my sdk version. The I needed to upgrade the stripe android version because it errors otherwise, but then this package throws the following errors:
I'm using implementation 'com.stripe:stripe-android:19.3.1' and this happens on assemble (android only)
Executing 'assemble'...
/Users/alitamoore/github/snackpass/snackpass-client-rn70/node_modules/tipsi-stripe/android/src/main/java/com/gettipsi/stripe/util/Converters.java:89: error: cannot find symbol
result.putString("number", card.getNumber());
^
symbol: method getNumber()
location: variable card of type Card
/Users/alitamoore/github/snackpass/snackpass-client-rn70/node_modules/tipsi-stripe/android/src/main/java/com/gettipsi/stripe/util/Converters.java:90: error: cannot find symbol
result.putString("cvc", card.getCvc() );
^
symbol: method getCvc()
location: variable card of type Card
/Users/alitamoore/github/snackpass/snackpass-client-rn70/node_modules/tipsi-stripe/android/src/main/java/com/gettipsi/stripe/util/Converters.java:184: error: cannot find symbol
return new Card.Builder(
^
symbol: class Builder
location: class Card
/Users/alitamoore/github/snackpass/snackpass-client-rn70/node_modules/tipsi-stripe/android/src/main/java/com/gettipsi/stripe/util/Converters.java:220: error: cannot find symbol
newSource.putMap("metadata", stringMapToWritableMap(source.getMetaData()));
^
symbol: method getMetaData()
location: variable source of type Source
The text was updated successfully, but these errors were encountered:
I'm trying to upgrade RN and my sdk version. The I needed to upgrade the stripe android version because it errors otherwise, but then this package throws the following errors:
I'm using
implementation 'com.stripe:stripe-android:19.3.1'
and this happens on assemble (android only)The text was updated successfully, but these errors were encountered: