react-native

    [react-native] android build시 npm list의 compile버전에 대한 문제

    Error react-native npm 하위 프로젝트의 android compile 버전이 root project의 버전과 상이하여 발생하는 문제 error: resource android:style/TextAppearance.Material.Widget.Button.Borderless.Colored not found. error: resource android:style/TextAppearance.Material.Widget.Button.Colored not found. Solution this fixed for megradle.build에서 하위 프로젝트에 대한 버전을 명시해준다.in android/build.gradle subprojects { afterEvaluate {project -> if ..

    Print: Entry, ":CFBundleIdentifier", Does Not Exist

    Print: Entry, ":CFBundleIdentifier", Does Not Exist React-Native build중 생긴 에러 로그 빌드 환경을 바꾸고 나서 빌드를 해보니 해당 에러가 발생하였다.무시무시한 에러와 달리 간단히 해결이 되었다. $ react-native upgrade 이것만 입력하니 해결이 되었다. ref) https://stackoverflow.com/questions/37461703/print-entry-cfbundleidentifier-does-not-exist

    This is a no-op, but it indicates a memory leak in your application

    ExceptionsManager.js:84 Warning: Can't call setState (or forceUpdate) on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in the componentWillUnmount method. in Current (created by Connect(Current)) in Connect(Current) (at SceneView.js:9) in SceneView (at StackViewLayout.js:483) in RCTView (at Vie..