Releases: zoontek/react-native-bootsplash
Releases · zoontek/react-native-bootsplash
6.3.3
- Remove the need for a Bridging Header file on React Native 0.77+:
import ReactAppDependencyProvider
import RNBootSplash // ⬅️ add this import
// …
@main
class AppDelegate: RCTAppDelegate {
// …
// ⬇️ override this method
override func customize(_ rootView: RCTRootView!) {
super.customize(rootView)
RNBootSplash.initWithStoryboard("BootSplash", rootView: rootView) // ⬅️ initialize the splash screen
}
}
6.3.2
6.3.1
6.3.0
- Add
react-native-bootsplash generate
CLI command (in parallel toreact-native generate-bootsplash
), for environments that doesn't have@react-native-community/cli-*
installed, like Expo 52 (see RFC0759: React Native Frameworks)
6.2.6
- Check if
__DEV__
is defined before using it (as it's not, by default, with react-native-web)
6.2.5
- Skip some assets generation steps if
AndroidManifest.xml
orstyles.xml
are missing for a given flavor (closes #640) - Fix another issue with
react-native-is-edge-to-edge
module resolution on new architecture (metro always resolves thebrowser
package.json entry instead ofmain
ormodule
- even when targetting iOS or Android)