expo-device 6.0.1 → 6.0.2

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
+ ## 6.0.2 — 2024-05-01
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 6.0.1 — 2024-04-23
14
18
 
15
19
  _This version does not introduce any user-facing changes._
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '6.0.1'
4
+ version = '6.0.2'
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.device"
15
15
  defaultConfig {
16
16
  versionCode 12
17
- versionName '6.0.1'
17
+ versionName '6.0.2'
18
18
  }
19
19
  }
20
20
 
@@ -99,6 +99,7 @@ class DeviceModule : Module() {
99
99
 
100
100
  AsyncFunction<Boolean>("isSideLoadingEnabledAsync") {
101
101
  return@AsyncFunction if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
102
+ @Suppress("DEPRECATION")
102
103
  Settings.Global.getInt(
103
104
  context.applicationContext.contentResolver,
104
105
  Settings.Global.INSTALL_NON_MARKET_APPS,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-device",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "A universal module that gets physical information about the device running the application",
5
5
  "main": "build/Device.js",
6
6
  "types": "build/Device.d.ts",
@@ -41,5 +41,5 @@
41
41
  "peerDependencies": {
42
42
  "expo": "*"
43
43
  },
44
- "gitHead": "ee4f30ef3b5fa567ad1bf94794197f7683fdd481"
44
+ "gitHead": "87bd0dfa8b784a834191195ca174a00dd30ee5b7"
45
45
  }