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 +7 -1
- package/android/.npmignore +11 -0
- package/example/android/app/debug.keystore +0 -0
- package/ios/.npmignore +8 -0
- package/package.json +6 -6
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
|
-
_⚠️
|
|
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
|
|
Binary file
|
package/ios/.npmignore
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-bootsplash",
|
|
3
|
-
"version": "4.1.
|
|
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
|
|
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.
|
|
72
|
-
"lint-staged": "^12.
|
|
73
|
-
"prettier": "^2.6.
|
|
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.
|
|
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"
|