expo-modules-autolinking 3.0.17 → 3.0.18

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
+ ## 3.0.18 — 2025-10-21
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [Android] Fixed `library projects cannot set applicationIdSuffix`. ([#40477](https://github.com/expo/expo/pull/40477) by [@lukmccall](https://github.com/lukmccall))
18
+
13
19
  ## 3.0.17 — 2025-10-21
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -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.17",
3
+ "version": "3.0.18",
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": "dbb1e7d24b4a668336e3ad34a4fb0ca4fafdf191"
49
+ "gitHead": "931d2e741cb76062726e5a95a9ff1398bbf21242"
50
50
  }