We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
index.android.js 의
_onPaymentResultReceive(e) { if (this.props.onPaymentResultReceive) { this.props.onPaymentResultReceive(e); } }
이 함수 안에 this 를 찍어보면 "undefined" 로 나옵니다.
componentDidMount() { DeviceEventEmitter.addListener('paymentEvent', (this.props.onPaymentResultReceive) ? this.props.onPaymentResultReceive : null); }
로 수정해서 쓰고 있습니다.
The text was updated successfully, but these errors were encountered:
KCP Android 적용 버전 (#1)
781b0da
KcpWebViewClient.java 추가 테스트 / 프로덕션 적용 완료
No branches or pull requests
index.android.js 의
이 함수 안에 this 를 찍어보면 "undefined" 로 나옵니다.
로 수정해서 쓰고 있습니다.
The text was updated successfully, but these errors were encountered: