I want to know, if i create a development build for a react native library and then if i install another native library to the code, do i want to recreate a new development app to work secondly installed library?
Yes. If you do not create a new dev build, your old build will not contain the native code needed by the JavaScript code and you will get crashes.
1 Like