expo-modules-autolinking 2.1.9 → 2.1.10

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.1.10 — 2025-05-06
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [Android] Fixed project properties were not being resolved correctly. ([#36666](https://github.com/expo/expo/pull/36666) by [@lukmccall](https://github.com/lukmccall))
18
+
13
19
  ## 2.1.9 — 2025-04-30
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -14,7 +14,7 @@ import kotlin.jvm.optionals.getOrNull
14
14
  class ExpoRootProjectPlugin : Plugin<Project> {
15
15
  override fun apply(rootProject: Project) {
16
16
  val versionCatalogs = rootProject.extensions.getByType(VersionCatalogsExtension::class.java)
17
- val libs = versionCatalogs.find("libs")
17
+ val libs = versionCatalogs.find("expoLibs")
18
18
 
19
19
  with(rootProject) {
20
20
  defineDefaultProperties(libs)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-autolinking",
3
- "version": "2.1.9",
3
+ "version": "2.1.10",
4
4
  "description": "Scripts that autolink Expo modules.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -46,5 +46,5 @@
46
46
  "require-from-string": "^2.0.2",
47
47
  "resolve-from": "^5.0.0"
48
48
  },
49
- "gitHead": "84355076bc31a356aa3d23257f387f221885f53d"
49
+ "gitHead": "907224d194d100adb3dff522d4d7be91ee43be51"
50
50
  }