Sebastian Scholten
Sebastian Scholten
Forked the repo and this seemed to have worked for me (https://github.com/tistro/rn-braintree/commit/1e6a73a17d70749989ae033283a799ebb17d93eb) ``` case Activity.RESULT_CANCELED: this.errorCallback.invoke("RESULT_CANCELED"); break; ``` in `onActivityResult`
I have tried multiDexEnable but no success Getting the following error: ``` FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:transformDexArchiveWithDexMergerForRelease'. > com.android.build.api.transform.TransformException: java.lang.RuntimeException:...
I managed to fix the problem above using the pull request below using [patch-package](https://www.npmjs.com/package/patch-package) https://github.com/mauron85/background-geolocation-android/pull/31 Seems to be a dependency conflict with expo's unimodules from what I understand
Hi @raziboy939 I was also facing this problem. I manage to get this working by using the following code ``` BTClient.showPaymentViewController({}).then((nonce) => { setTimeout(() => { alert(nonce, 'success') }, 1000)...