Skip to content

Releases: zoontek/react-native-bootsplash

7.3.1

08 Apr 12:05
ae43f00

Choose a tag to compare

  • Remove StyleSheet.absoluteFillObject usage for react-native 0.85 compatibility (closes #767)

7.3.0

08 Apr 08:39
ea097a1

Choose a tag to compare

  • Add mitigation for SurfaceControl.checkNotReleased() errors on Android 12 / 13
  • Switch from Dialog to View on Android
  • Improve exceeding assets size logs in CLI output (closes #766)

7.2.0

27 Mar 11:47
83bf563

Choose a tag to compare

  • Make the Expo plugin read BOOTSPLASH_LICENSE_KEY environment variable, deprecate the licenseKey plugin property (closes #763)

7.1.0

22 Feb 17:55
cc9a053

Choose a tag to compare

  • Export a dedicated typed function for Expo dynamic configuration (app.config.ts):
import type { ConfigContext, ExpoConfig } from "expo/config";
import bootsplash from "react-native-bootsplash/expo"; // use `require` in app.config.js

export default ({ config }: ConfigContext): ExpoConfig => ({
  // …
  plugins: [
    bootsplash({
      logo: "./assets/logo.png",
      logoWidth: 100,
      background: "#f5fcff",
      // …
    }),
  ],
});

7.0.2

03 Feb 13:00
cdf94cc

Choose a tag to compare

  • Remove @react-native-community/cli-* dependencies (closes #750)

7.0.1

25 Jan 00:34
749c24d

Choose a tag to compare

  • Fix addon loading (closes #749)

7.0.0

23 Jan 10:43
8967e0f

Choose a tag to compare

What's new

  • The library is now edge-to-edge by default on Android
  • The Expo plugin now generates assets at prebuild (no need to run the CLI first)
  • isVisible() is now synchronous
  • A new --plist CLI option to specify a custom Info.plist file path

Migration

To migrate, please follow the MIGRATION.md guide.

6.3.12

14 Jan 21:10
ac4d77d

Choose a tag to compare

  • Add support for react-native-screens 4.16.0+ in the expo plugin

6.3.11

07 Sep 14:54
4c6a4d5

Choose a tag to compare

  • Fix Android cropping thresholds alert in the assets generator (might be cropped when > 134dp, will be cropped when > 192dp)

6.3.10

01 Jul 16:16
1c75843

Choose a tag to compare

  • Update react-native-is-edge-to-edge