React-Native(2)
-
React-Native 안드로이드 빌드 시 권한문제
문제React-Native 프로젝트가 안드로이드 시뮬레이터에 빌드되지 않는 문제 해결방법chmod 755 android/gradlew 참고: https://stackoverflow.com/questions/54413443/react-native-getting-error-while-building-to-android
2019.02.22 -
React-Native 터미널 기본명렁어
# 프로젝트 생성react-native init FirstProject # ios 실행cd FirstProjectreact-native run-ios # android 실행cd FirstProjectreact-native run-android # 디버깅모드 (로그 확인)adb logcat | grep ReactNativeJS
2019.02.19