expo-splash-screen 0.27.6 → 0.27.7
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/CHANGELOG.md
CHANGED
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = 'host.exp.exponent'
|
|
4
|
-
version = '0.27.
|
|
4
|
+
version = '0.27.7'
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -14,7 +14,7 @@ android {
|
|
|
14
14
|
namespace "expo.modules.splashscreen"
|
|
15
15
|
defaultConfig {
|
|
16
16
|
versionCode 17
|
|
17
|
-
versionName '0.27.
|
|
17
|
+
versionName '0.27.7'
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
|
@@ -189,7 +189,7 @@ EX_REGISTER_SINGLETON_MODULE(SplashScreen);
|
|
|
189
189
|
// For unknown reasons, this function may be sometimes called twice with the same changes.
|
|
190
190
|
// What leads to warnings like this one: `'SplashScreen.show' has already been called for given view controller`.
|
|
191
191
|
// To prevent this weird behaviour, we check if the value was really changed.
|
|
192
|
-
if (newRootViewController != nil && newRootViewController != self.observingRootViewController) {
|
|
192
|
+
if (newRootViewController != nil && self.observingRootViewController != nil && newRootViewController != self.observingRootViewController) {
|
|
193
193
|
[self removeRootViewControllerListener];
|
|
194
194
|
[self showSplashScreenFor:newRootViewController options:EXSplashScreenDefault];
|
|
195
195
|
[self addRootViewControllerListener];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-splash-screen",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.7",
|
|
4
4
|
"description": "Provides a module to allow keeping the native Splash Screen visible until you choose to hide it.",
|
|
5
5
|
"main": "build",
|
|
6
6
|
"types": "build",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/splash-screen/",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@expo/prebuild-config": "7.0.
|
|
37
|
+
"@expo/prebuild-config": "7.0.9"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"expo-module-scripts": "^3.0.0"
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"expo": "*"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "672a1e49651614f047f5f104fa2bb65ac7fb050e"
|
|
46
46
|
}
|