expo-system-ui 2.2.1 → 2.3.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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 2.3.0 — 2023-05-08
14
+
15
+ ### 💡 Others
16
+
17
+ - Android: Switch from deprecated `toLowerCase` to `lowercase` function ([#22225](https://github.com/expo/expo/pull/22225) by [@hbiede](https://github.com/hbiede))
18
+
13
19
  ## 2.2.1 — 2023-02-09
14
20
 
15
21
  _This version does not introduce any user-facing changes._
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
  ### Installation
11
11
 
12
12
  ```
13
- expo install expo-system-ui
13
+ npx expo install expo-system-ui
14
14
  ```
15
15
 
16
16
  ### Extra Setup
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '2.2.1'
6
+ version = '2.3.0'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -74,7 +74,7 @@ android {
74
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
75
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
76
76
  versionCode 1
77
- versionName '2.2.1'
77
+ versionName '2.3.0'
78
78
  }
79
79
  lintOptions {
80
80
  abortOnError false
@@ -14,5 +14,5 @@ class SystemUIReactActivityLifecycleListener(activityContext: Context) : ReactAc
14
14
  }
15
15
 
16
16
  private fun getUserInterfaceStyle(context: Context): String =
17
- context.getString(R.string.expo_system_ui_user_interface_style).toLowerCase()
17
+ context.getString(R.string.expo_system_ui_user_interface_style).lowercase()
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-system-ui",
3
- "version": "2.2.1",
3
+ "version": "2.3.0",
4
4
  "description": "Interact with system UI elements",
5
5
  "main": "build/SystemUI.js",
6
6
  "types": "build/SystemUI.d.ts",
@@ -44,5 +44,5 @@
44
44
  "peerDependencies": {
45
45
  "expo": "*"
46
46
  },
47
- "gitHead": "1f8a6a09570fd451378565ca34933018ce48454e"
47
+ "gitHead": "4ba50c428c8369bb6b3a51a860d4898ad4ccbe78"
48
48
  }