Skip to content

Releases: zoontek/react-native-bootsplash

6.3.10

01 Jul 16:16
1c75843
Compare
Choose a tag to compare
  • Update react-native-is-edge-to-edge

6.3.9

08 Jun 09:14
0795245
Compare
Choose a tag to compare
  • Update react-native-builder-bob (closes #711)

6.3.8

08 May 09:51
37be688
Compare
Choose a tag to compare
  • Update @expo/config-plugins to v10 (closes #704)

6.3.7

28 Apr 14:33
388d6be
Compare
Choose a tag to compare

6.3.6

24 Apr 16:17
f560943
Compare
Choose a tag to compare
  • Update Expo config plugin to use ReactNativeDelegate in SDK 53 by @kadikraman in #700

6.3.5

12 Apr 16:17
dfe4701
Compare
Choose a tag to compare
  • Add Expo 53 support (closes #693)

6.3.4

21 Mar 18:03
ce7bb4f
Compare
Choose a tag to compare
  • Add support for Swift AppDelegate in Expo plugin by @Titozzz in #686

6.3.3

30 Jan 18:03
c4a3f96
Compare
Choose a tag to compare
  • 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

25 Nov 09:00
c2c69a6
Compare
Choose a tag to compare
  • Upgrading @expo/config-plugins to 9.0.0

6.3.1

12 Nov 12:56
eef2206
Compare
Choose a tag to compare
  • Fix a crash of the expo plugin when the assets/bootsplash directory is polluted with .DS_Store files
  • Display a more friendly error when the expo plugin is ran without running the assets generation first.