728x90
// 👍 Good Case
@ReactMethod
public void getAppName(Promise promise) {
promise.resolve("Roubit");
}
// 👎 Bad Case
@ReactMethod
public String getAppName(Promise promise) {
return "Roubit";
}
항상 promise 처리 해줘야 한다.
'Develop > React Native' 카테고리의 다른 글
[React Native] 가로의 길이가 바뀌는 디바이스(폴드) 대응: Dimensions -> useDimensions (0) | 2023.01.25 |
---|---|
Apollo Client query 시 주의점 (variables) (0) | 2023.01.21 |
react native vision camera 이슈 추적용 (0) | 2022.08.26 |
[Error] NDK at ~/Library/Android/sdk/ndk~~~~ did not have a source.properties file (0) | 2022.03.21 |
xcode archive failed - copy failed :: xcode 아카이브 빌드 후 업로드 실패 (1) | 2021.11.08 |