Skip to content

Releases: zoontek/react-native-bootsplash

4.1.6

19 Jun 18:11
Compare
Choose a tag to compare
  • Update project dependencies and pin jpeg-js to 0.4.4 (fixes #359)

4.1.5

23 Apr 11:42
Compare
Choose a tag to compare
  • Add a note about Android 12 support (when ran from the terminal / Android Studio)
  • Update project dependencies

4.1.4

31 Mar 16:51
d0dd601
Compare
Choose a tag to compare
  • Add support for React Native >= 0.68 (⚠️ Note that the new architecture isn't supported yet!)

4.1.3

11 Feb 14:47
ea11082
Compare
Choose a tag to compare
  • Remove the need for RNBootSplashTask (not needed since there is no show method anymore) (#318)

4.1.2

06 Feb 18:35
Compare
Choose a tag to compare
  • Prevent initialization in iOS app extension
  • Set requiresMainQueueSetup to NO

4.1.1

04 Feb 17:31
3797112
Compare
Choose a tag to compare
  • Add tvOS target in podspec

4.1.0

15 Jan 11:08
c84b4eb
Compare
Choose a tag to compare
  • Update AndroidX core-splashscreen package to 1.0.0-beta01

Action required:

Update the package accordingly in your android/app/build.gradlefile:

// …

dependencies {
  implementation fileTree(dir: "libs", include: ["*.jar"])
  //noinspection GradleDynamicVersion
  implementation "com.facebook.react:react-native:+"  // From node_modules

+ implementation "androidx.core:core-splashscreen:1.0.0-beta01"

4.0.2

25 Nov 11:00
Compare
Choose a tag to compare
  • Switch to a custom blocking Queue implementation (FIFO), which is most suited for the job of multiple concurrent promises.

4.0.1

24 Nov 17:00
bc2cd7b
Compare
Choose a tag to compare
  • Replace ArrayList queue implementation with a Java Stack on Android to implement a proper thread-safe LIFO (Fix #285)

4.0.0

20 Nov 13:32
Compare
Choose a tag to compare
  • Dropped support for Android API < 6.0 and iOS < 11.0 (Android 5.x is supported in a degraded way)
  • Android 12 support with the new SplashScreen API 🎉
  • Easier install on Android (no more bootsplash.xml or SplashScreenActivity!)
  • Support of transparent status / navigation bars with react-native-bars (a full example is available in the /example directory)
  • The iOS implementation now rely exclusively on RCTRootView loadingView
  • Removal of the show method
  • Updated CLI tool to support Android 12 logos padding

For migration from the v3, check the MIGRATION.md guide.