Skip to content

Releases: zoontek/react-native-bootsplash

6.3.9

08 Jun 09:14
0795245

Choose a tag to compare

  • Update react-native-builder-bob (closes #711)

6.3.8

08 May 09:51
37be688

Choose a tag to compare

  • Update @expo/config-plugins to v10 (closes #704)

6.3.7

28 Apr 14:33
388d6be

Choose a tag to compare

6.3.6

24 Apr 16:17
f560943

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

Choose a tag to compare

  • Add Expo 53 support (closes #693)

6.3.4

21 Mar 18:03
ce7bb4f

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

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

Choose a tag to compare

  • Upgrading @expo/config-plugins to 9.0.0

6.3.1

12 Nov 12:56
eef2206

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.

6.3.0

11 Nov 18:45
a6dda7b

Choose a tag to compare

  • Add react-native-bootsplash generate CLI command (in parallel to react-native generate-bootsplash), for environments that doesn't have @react-native-community/cli-* installed, like Expo 52 (see RFC0759: React Native Frameworks)