expo-modules-autolinking 3.0.17 → 3.0.19
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,10 +10,21 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 3.0.19 — 2025-10-23
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 3.0.18 — 2025-10-21
|
|
18
|
+
|
|
19
|
+
### 🐛 Bug fixes
|
|
20
|
+
|
|
21
|
+
- [Android] Fixed `library projects cannot set applicationIdSuffix`. ([#40477](https://github.com/expo/expo/pull/40477) by [@lukmccall](https://github.com/lukmccall))
|
|
22
|
+
|
|
13
23
|
## 3.0.17 — 2025-10-21
|
|
14
24
|
|
|
15
25
|
### 🐛 Bug fixes
|
|
16
26
|
|
|
27
|
+
- [iOS] Moved our special build phase script initialization from run_podfile_post_install_hooks -> perform_post_install_actions to fix issue with wrong UUIDs in Pods.pbproj file. ([#40572](https://github.com/expo/expo/pull/40572) by [@chrfalch](https://github.com/chrfalch))
|
|
17
28
|
- fix globMatchFunctorAllAsync to check if globbed path is a file to prevent errors ([#40437](https://github.com/expo/expo/pull/40437) by [@artus9033](https://github.com/artus9033)) ([#40501](https://github.com/expo/expo/pull/40501) by [@kitten](https://github.com/kitten))
|
|
18
29
|
|
|
19
30
|
## 3.0.16 — 2025-10-20
|
|
@@ -159,11 +159,6 @@ open class ExpoAutolinkingPlugin : Plugin<Project> {
|
|
|
159
159
|
|
|
160
160
|
consumerFlavors.create(appFlavor.name).apply {
|
|
161
161
|
this.dimension = dimension
|
|
162
|
-
appFlavor.applicationIdSuffix?.let { this.applicationIdSuffix = it }
|
|
163
|
-
appFlavor.versionNameSuffix?.let { this.versionNameSuffix = it }
|
|
164
|
-
if (appFlavor.manifestPlaceholders.isNotEmpty()) {
|
|
165
|
-
this.manifestPlaceholders.putAll(appFlavor.manifestPlaceholders)
|
|
166
|
-
}
|
|
167
162
|
}
|
|
168
163
|
|
|
169
164
|
project.logger.quiet(" -> Created flavor '${appFlavor.name}' (dimension='$dimension') in :${project.path}")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-autolinking",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.19",
|
|
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": "
|
|
49
|
+
"gitHead": "f17f3b55004d10db40d4c5455498444ad032e173"
|
|
50
50
|
}
|
|
@@ -22,15 +22,16 @@ module Pod
|
|
|
22
22
|
class Installer
|
|
23
23
|
private
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
_original_perform_post_install_actions = instance_method(:perform_post_install_actions)
|
|
26
26
|
_original_run_podfile_pre_install_hooks = instance_method(:run_podfile_pre_install_hooks)
|
|
27
27
|
_script_phase_name = '[Expo Autolinking] Run Codegen with autolinking'
|
|
28
28
|
|
|
29
29
|
public
|
|
30
30
|
|
|
31
|
-
define_method(:
|
|
31
|
+
define_method(:perform_post_install_actions) do
|
|
32
|
+
|
|
32
33
|
# Call original implementation first
|
|
33
|
-
|
|
34
|
+
_original_perform_post_install_actions.bind(self).()
|
|
34
35
|
|
|
35
36
|
# Next we'll perform an Expo workaround for Codegen in React Native where it uses the wrong output path for
|
|
36
37
|
# the generated files. This can be remove when the following PR is merged and released upstream:
|