react-native-bootsplash 4.1.4 → 4.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -172,7 +172,9 @@ ios/YourProjectName/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.p
172
172
 
173
173
  ### iOS
174
174
 
175
- _⚠️ Only `.storyboard` files are supported ([Apple has deprecated other methods in April 2020](https://developer.apple.com/news/?id=01132020b))._
175
+ _⚠️  Only `.storyboard` files are supported ([Apple has deprecated other methods in April 2020](https://developer.apple.com/news/?id=01132020b))._
176
+
177
+ ---
176
178
 
177
179
  Edit the `ios/YourProjectName/AppDelegate.mm` file:
178
180
 
@@ -206,6 +208,10 @@ Set the `BootSplash.storyboard` as launch screen file:
206
208
 
207
209
  ### Android
208
210
 
211
+ _⚠️  On Android 12, the splash screen will not appear if you start your app from the terminal / Android Studio. To see it, kill your app and restart it in normal conditions (tap on your app icon in the app launcher)._
212
+
213
+ ---
214
+
209
215
  1. As this library only support Android 6+, you probably have to edit your `android/build.gradle` file:
210
216
 
211
217
  ```gradle
@@ -0,0 +1,11 @@
1
+ .gradle/
2
+ .idea/
3
+ build/
4
+ gradle/
5
+
6
+ .DS_Store
7
+ .npmignore
8
+ gradlew
9
+ gradlew.bat
10
+ *.iml
11
+ local.properties
package/ios/.npmignore ADDED
@@ -0,0 +1,8 @@
1
+ Pods/
2
+ build/
3
+
4
+ */project.xcworkspace/
5
+ */xcuserdata/
6
+
7
+ .DS_Store
8
+ .npmignore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-bootsplash",
3
- "version": "4.1.4",
3
+ "version": "4.1.5",
4
4
  "license": "MIT",
5
5
  "description": "Display a bootsplash on your app starts. Hide it when you want.",
6
6
  "author": "Mathieu Acthernoene <zoontek@gmail.com>",
@@ -60,7 +60,7 @@
60
60
  },
61
61
  "dependencies": {
62
62
  "chalk": "^4.1.2",
63
- "fs-extra": "^10.0.1",
63
+ "fs-extra": "^10.1.0",
64
64
  "jimp": "^0.16.1"
65
65
  },
66
66
  "resolutions": {
@@ -68,12 +68,12 @@
68
68
  },
69
69
  "devDependencies": {
70
70
  "@types/fs-extra": "^9.0.13",
71
- "@types/react-native": "^0.67.3",
72
- "lint-staged": "^12.3.7",
73
- "prettier": "^2.6.1",
71
+ "@types/react-native": "^0.67.6",
72
+ "lint-staged": "^12.4.0",
73
+ "prettier": "^2.6.2",
74
74
  "prettier-plugin-organize-imports": "^2.3.4",
75
75
  "react": "^17.0.2",
76
- "react-native": "^0.68.0",
76
+ "react-native": "^0.68.1",
77
77
  "react-native-builder-bob": "^0.18.2",
78
78
  "rescript": "^9.1.4",
79
79
  "typescript": "^4.6.3"