expo-splash-screen 0.21.0 → 0.22.0

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
@@ -10,6 +10,20 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.22.0 — 2023-09-04
14
+
15
+ ### 🎉 New features
16
+
17
+ - Added support for React Native 0.73. ([#24018](https://github.com/expo/expo/pull/24018) by [@kudo](https://github.com/kudo))
18
+
19
+ ### 💡 Others
20
+
21
+ - Removed 'No native splash screen registered' warning on iOS when opening and reloading the app. ([#24210](https://github.com/expo/expo/pull/24210) by [@gabrieldonadel](https://github.com/gabrieldonadel))
22
+
23
+ ## 0.21.1 — 2023-08-02
24
+
25
+ _This version does not introduce any user-facing changes._
26
+
13
27
  ## 0.21.0 — 2023-07-28
14
28
 
15
29
  ### 🐛 Bug fixes
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '0.21.0'
6
+ version = '0.22.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -53,13 +53,16 @@ afterEvaluate {
53
53
  android {
54
54
  compileSdkVersion safeExtGet("compileSdkVersion", 33)
55
55
 
56
- compileOptions {
57
- sourceCompatibility JavaVersion.VERSION_11
58
- targetCompatibility JavaVersion.VERSION_11
59
- }
56
+ def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
57
+ if (agpVersion.tokenize('.')[0].toInteger() < 8) {
58
+ compileOptions {
59
+ sourceCompatibility JavaVersion.VERSION_11
60
+ targetCompatibility JavaVersion.VERSION_11
61
+ }
60
62
 
61
- kotlinOptions {
62
- jvmTarget = JavaVersion.VERSION_11.majorVersion
63
+ kotlinOptions {
64
+ jvmTarget = JavaVersion.VERSION_11.majorVersion
65
+ }
63
66
  }
64
67
 
65
68
  namespace "expo.modules.splashscreen"
@@ -67,7 +70,7 @@ android {
67
70
  minSdkVersion safeExtGet('minSdkVersion', 21)
68
71
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
69
72
  versionCode 17
70
- versionName '0.21.0'
73
+ versionName '0.22.0'
71
74
  }
72
75
  lintOptions {
73
76
  abortOnError false
@@ -114,9 +114,6 @@ EX_REGISTER_SINGLETON_MODULE(SplashScreen);
114
114
 
115
115
  - (void)onAppContentDidAppear:(UIViewController *)viewController
116
116
  {
117
- if ([self isAppActive] && ![self.splashScreenControllers objectForKey:viewController]) {
118
- EXLogWarn(@"No native splash screen registered for given view controller. Call 'SplashScreen.show' for given view controller first.");
119
- }
120
117
  BOOL needsHide = [[self.splashScreenControllers objectForKey:viewController] needsHideOnAppContentDidAppear];
121
118
  if (needsHide) {
122
119
  [self hideSplashScreenFor:viewController
@@ -128,9 +125,6 @@ EX_REGISTER_SINGLETON_MODULE(SplashScreen);
128
125
 
129
126
  - (void)onAppContentWillReload:(UIViewController *)viewController
130
127
  {
131
- if ([self isAppActive] && ![self.splashScreenControllers objectForKey:viewController]) {
132
- EXLogWarn(@"No native splash screen registered for given view controller. Call 'SplashScreen.show' for given view controller first.");
133
- }
134
128
  BOOL needsShow = [[self.splashScreenControllers objectForKey:viewController] needsShowOnAppContentWillReload];
135
129
  if (needsShow) {
136
130
  // For reloading apps, specify `EXSplashScreenForceShow` to show splash screen again
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-splash-screen",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "description": "Provides a module to allow keeping the native Splash Screen visible until you choose to hide it.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  "preset": "expo-module-scripts"
38
38
  },
39
39
  "dependencies": {
40
- "@expo/prebuild-config": "6.3.0"
40
+ "@expo/prebuild-config": "6.4.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "expo-module-scripts": "^3.0.0"
@@ -45,5 +45,5 @@
45
45
  "peerDependencies": {
46
46
  "expo": "*"
47
47
  },
48
- "gitHead": "663654577a7068c641b5e9474efbc502e3f334ea"
48
+ "gitHead": "79607a7325f47aa17c36d266100d09a4ff2cc544"
49
49
  }
package/tsconfig.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "outDir": "./build"
6
6
  },
7
7
  "include": ["./src"],
8
- "exclude": ["**/__mocks__/*", "**/__tests__/*", "**/__stories__/*"]
8
+ "exclude": ["**/__mocks__/*", "**/__tests__/*"]
9
9
  }