Do we need to build development build for each time we add a native library?

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?

Hi @amilaupendra

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