I've upgraded my bare expo sdk from 44 to 45 and now I keep getting a lot of errors when I'm trying to build the android:
//MainActivity.java
import expo.modules.devlauncher.DevLauncherController;
import expo.modules.ReactActivityDelegateWrapper;
the errors I receive:
error: package expo.modules.devlauncher does not exist
import expo.modules.devlauncher.DevLauncherController;
error: package expo.modules does not exist
import expo.modules.ReactActivityDelegateWrapper;
package expo.modules does not exist
import expo.modules.ApplicationLifecycleDispatcher;
error: package expo.modules does not exist
import expo.modules.ExpoModulesPackage;
I didn't add any new code to the MainActivity.java and I can see the expo-updates": "~0.13.4 in my package.json. I tried to install npx install-expo-modules@latest separately, deleted node-modules and reinstalled again, nothing seems to be working. Any advise and help is greatly appreciated.