### Missing MainApplication Class Source: https://github.com/chatwoot/chatwoot-mobile-app/wiki/Common-Errors-and-Fixes This error suggests that the application's main class cannot be found, often due to cache issues. Cleaning the application cache can resolve this. ```bash Didn't find class "com.chatwoot.app.MainApplication" on path: DexPathList ``` ```bash rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean --force ``` -------------------------------- ### Android Build Failure Source: https://github.com/chatwoot/chatwoot-mobile-app/wiki/Common-Errors-and-Fixes This error indicates a failure during the Android build process. Invalidate caches and restart Android Studio to resolve. ```bash Failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade ``` -------------------------------- ### iOS No Bundle URL Present Source: https://github.com/chatwoot/chatwoot-mobile-app/wiki/Common-Errors-and-Fixes This error occurs in iOS when the application bundle cannot be found. Deleting the ios/build folder and rerunning the build can fix this. ```bash No bundle URL present ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.