While investigating [ENG-7696](https://linear.app/comm/issue/ENG-7696/commsecurestore-crash-during-commmmkvinitialize), I noticed this log being printed:
```
[REANIMATED]: Since 2.5.0, Reanimated autoinstalls on Android - you can remove getJSIModulePackage() override in MainApplication.java.
```
It looks like it's coming from [here](https://github.com/software-mansion/react-native-reanimated/blob/2.12.0/android/src/main/java/com/swmansion/reanimated/ReanimatedJSIModulePackage.java), which confirms that `ReanimatedJSIModulePackage` is no longer doing anything and is deprecated.
This diff replaces `ReanimatedJSIModulePackage` with its parent `JSIModulePackage`.
Depends on D11660