Sean Yu

Results 9 comments of Sean Yu

do you mean `force_delete` @therve ? https://registry.terraform.io/providers/DataDog/datadog/2.26.1/docs/resources/monitor

That sounds awesome lemme know how it goes Maybe if I have capacity, I can lend a helping hand

@geniuscd have you figured out why it only calls no network?

I found the issue https://github.com/taessina/react-native-paypal-wrapper/blob/master/android/src/main/java/com/taessina/paypal/RNPaypalWrapperModule.java#L128 the environment being passed here is wrong if you compare it https://github.com/paypal/PayPal-Android-SDK/blob/master/SampleApp/src/main/java/com/paypal/example/paypalandroidsdkexample/SampleActivity.java#L64 it uses PayPalConfiguration. Do you guys still accept PRs @alvinthen ?

I noticed that the environment actually works fine, but you need to restart the whole application if you plan to "reinitialize" the Paypal service. A javascript reload wouldn't correctly reinitialize...

There is already a `stopService` in `onHostDestroy` in the current codebase https://github.com/taessina/react-native-paypal-wrapper/blob/master/android/src/main/java/com/taessina/paypal/RNPaypalWrapperModule.java#L198. The effect of putting `stopService` in `onHostDestroy` is needing to kill the app i think to reinitialize correct...

I guess we have two options: 1) If we really want to expose the initialization of the paypal to be exposed to the JS side, It's possible that no code...

> Another way is to check if the PayPalService is already running (assuming starting the PayPalService more than once will ruin things up). Start the service if it's not. I...

Alright. Thank you! A few more questions. Do I create a PR or do I merge it straight to master? How do you do releases to npm? @alvinthen