expo-splash-screen 0.26.0 → 0.26.1

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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.26.1 — 2023-12-19
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 0.26.0 — 2023-12-12
14
18
 
15
19
  ### 💡 Others
@@ -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.26.0'
6
+ version = '0.26.1'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  if (expoModulesCorePlugin.exists()) {
@@ -94,7 +94,7 @@ android {
94
94
  namespace "expo.modules.splashscreen"
95
95
  defaultConfig {
96
96
  versionCode 17
97
- versionName '0.26.0'
97
+ versionName '0.26.1'
98
98
  }
99
99
  }
100
100
 
@@ -1,14 +1,12 @@
1
+ @file:Suppress("UnusedImport") // this needs to stay for versioning to work
2
+
1
3
  package expo.modules.splashscreen
2
4
 
3
5
  import android.content.Context
4
6
  import androidx.core.content.ContextCompat
5
7
 
6
8
  // this needs to stay for versioning to work
7
- /* ktlint-disable no-unused-imports */
8
- import expo.modules.splashscreen.SplashScreenImageResizeMode
9
- import expo.modules.splashscreen.SplashScreenViewProvider
10
9
  // EXPO_VERSIONING_NEEDS_PACKAGE_R
11
- /* ktlint-enable no-unused-imports */
12
10
 
13
11
  /**
14
12
  * Default implementation that uses native resources.
@@ -1,3 +1,5 @@
1
+ @file:Suppress("UnusedImport")
2
+
1
3
  package expo.modules.splashscreen
2
4
 
3
5
  import android.app.Activity
@@ -7,10 +9,7 @@ import expo.modules.core.interfaces.ReactActivityLifecycleListener
7
9
  import expo.modules.splashscreen.singletons.SplashScreen
8
10
 
9
11
  // this needs to stay for versioning to work
10
- /* ktlint-disable no-unused-imports */
11
- import expo.modules.splashscreen.SplashScreenImageResizeMode
12
12
  // EXPO_VERSIONING_NEEDS_PACKAGE_R
13
- /* ktlint-enable no-unused-imports */
14
13
 
15
14
  class SplashScreenReactActivityLifecycleListener(activityContext: Context) : ReactActivityLifecycleListener {
16
15
  override fun onContentChanged(activity: Activity) {
@@ -1,3 +1,5 @@
1
+ @file:Suppress("UnusedImport") // this needs to stay for versioning to work
2
+
1
3
  package expo.modules.splashscreen
2
4
 
3
5
  import android.annotation.SuppressLint
@@ -7,9 +9,6 @@ import android.widget.ImageView
7
9
  import android.widget.RelativeLayout
8
10
 
9
11
  // this needs to stay for versioning to work
10
- /* ktlint-disable no-unused-imports */
11
- import expo.modules.splashscreen.SplashScreenImageResizeMode
12
- /* ktlint-enable no-unused-imports */
13
12
 
14
13
  @SuppressLint("ViewConstructor")
15
14
  class SplashScreenView(
@@ -39,7 +39,6 @@ object SplashScreen : SingletonModule {
39
39
  successCallback: () -> Unit = {},
40
40
  failureCallback: (reason: String) -> Unit = { Log.w(TAG, it) }
41
41
  ) {
42
-
43
42
  SplashScreenStatusBar.configureTranslucent(activity, statusBarTranslucent)
44
43
 
45
44
  val splashView = splashScreenViewProvider.createSplashScreenView(activity)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-splash-screen",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
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": "6.7.0"
37
+ "@expo/prebuild-config": "6.7.2"
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": "6aca7ce098ddc667776a3d7cf612adbb985e264a"
45
+ "gitHead": "43f1b4f8a5a9bca649e4e7ca6e4155482a162431"
46
46
  }