I am currently developing a project that consists of two parts:
Web Admin Panel - Used for managing and overseeing the system. React native App - The main application for end users. The issue I'm facing is related to maintaining a shared codebase for these two platforms. Whenever I work on the react native app, the web admin panel starts throwing errors due to changes I make for the react native features or configurations. Similarly, if I focus on the web admin panel, the Android app encounters compatibility issues.
Current Approach: To temporarily solve this, I find myself copying and pasting project files between separate directories for the web and Android versions. While this works in the short term, it is inefficient and error-prone. one of the approach is using mono repo but a part from this is their any other soln.