expo-build-properties 57.0.0 → 57.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 +10 -0
- package/build/android.js +4 -0
- package/build/pluginConfig.d.ts +4 -0
- package/build/pluginConfig.js +1 -0
- package/package.json +4 -4
- package/src/android.ts +4 -0
- package/src/pluginConfig.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 57.0.2 — 2026-06-30
|
|
14
|
+
|
|
15
|
+
### 🎉 New features
|
|
16
|
+
|
|
17
|
+
- [Android] Add `android.cmakeVersion` to override the CMake version used to build native code. ([#47377](https://github.com/expo/expo/pull/47377) by [@zoontek](https://github.com/zoontek))
|
|
18
|
+
|
|
19
|
+
## 57.0.1 — 2026-06-27
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 57.0.0 — 2026-06-25
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
package/build/android.js
CHANGED
|
@@ -32,6 +32,10 @@ exports.withAndroidBuildProperties = createBuildGradlePropsConfigPlugin([
|
|
|
32
32
|
propName: 'android.buildToolsVersion',
|
|
33
33
|
propValueGetter: (config) => config.android?.buildToolsVersion,
|
|
34
34
|
},
|
|
35
|
+
{
|
|
36
|
+
propName: 'android.cmakeVersion',
|
|
37
|
+
propValueGetter: (config) => config.android?.cmakeVersion,
|
|
38
|
+
},
|
|
35
39
|
{
|
|
36
40
|
propName: 'android.kotlinVersion',
|
|
37
41
|
propValueGetter: (config) => config.android?.kotlinVersion,
|
package/build/pluginConfig.d.ts
CHANGED
|
@@ -76,6 +76,10 @@ export interface PluginConfigTypeAndroid extends SharedBuildConfigFields {
|
|
|
76
76
|
* Override the default `buildToolsVersion` version number in **build.gradle**.
|
|
77
77
|
*/
|
|
78
78
|
buildToolsVersion?: string;
|
|
79
|
+
/**
|
|
80
|
+
* Override the CMake version, applied to the app and all autolinked native modules.
|
|
81
|
+
*/
|
|
82
|
+
cmakeVersion?: string;
|
|
79
83
|
/**
|
|
80
84
|
* Override the Kotlin version used when building the app.
|
|
81
85
|
*/
|
package/build/pluginConfig.js
CHANGED
|
@@ -55,6 +55,7 @@ const schema = {
|
|
|
55
55
|
compileSdkVersion: { type: 'integer', nullable: true },
|
|
56
56
|
targetSdkVersion: { type: 'integer', nullable: true },
|
|
57
57
|
buildToolsVersion: { type: 'string', nullable: true },
|
|
58
|
+
cmakeVersion: { type: 'string', nullable: true },
|
|
58
59
|
kotlinVersion: { type: 'string', nullable: true },
|
|
59
60
|
enableMinifyInReleaseBuilds: { type: 'boolean', nullable: true },
|
|
60
61
|
enableShrinkResourcesInReleaseBuilds: { type: 'boolean', nullable: true },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-build-properties",
|
|
3
|
-
"version": "57.0.
|
|
3
|
+
"version": "57.0.2",
|
|
4
4
|
"description": "Config plugin to customize native build properties on prebuild",
|
|
5
5
|
"main": "build/withBuildProperties.js",
|
|
6
6
|
"types": "build/withBuildProperties.d.ts",
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "^22.14.0",
|
|
37
37
|
"@types/semver": "^7.0.0",
|
|
38
|
-
"expo": "
|
|
39
|
-
"expo
|
|
38
|
+
"expo-module-scripts": "56.0.3",
|
|
39
|
+
"expo": "57.0.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"expo": "*"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "ab82681fbcef61d5283c1938290ba5cfe42e9cfd",
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "expo-module build",
|
|
47
47
|
"clean": "expo-module clean",
|
package/src/android.ts
CHANGED
|
@@ -42,6 +42,10 @@ export const withAndroidBuildProperties = createBuildGradlePropsConfigPlugin<Plu
|
|
|
42
42
|
propName: 'android.buildToolsVersion',
|
|
43
43
|
propValueGetter: (config) => config.android?.buildToolsVersion,
|
|
44
44
|
},
|
|
45
|
+
{
|
|
46
|
+
propName: 'android.cmakeVersion',
|
|
47
|
+
propValueGetter: (config) => config.android?.cmakeVersion,
|
|
48
|
+
},
|
|
45
49
|
{
|
|
46
50
|
propName: 'android.kotlinVersion',
|
|
47
51
|
propValueGetter: (config) => config.android?.kotlinVersion,
|
package/src/pluginConfig.ts
CHANGED
|
@@ -115,6 +115,10 @@ export interface PluginConfigTypeAndroid extends SharedBuildConfigFields {
|
|
|
115
115
|
* Override the default `buildToolsVersion` version number in **build.gradle**.
|
|
116
116
|
*/
|
|
117
117
|
buildToolsVersion?: string;
|
|
118
|
+
/**
|
|
119
|
+
* Override the CMake version, applied to the app and all autolinked native modules.
|
|
120
|
+
*/
|
|
121
|
+
cmakeVersion?: string;
|
|
118
122
|
/**
|
|
119
123
|
* Override the Kotlin version used when building the app.
|
|
120
124
|
*/
|
|
@@ -650,6 +654,7 @@ const schema: JSONSchema<PluginConfigType> = {
|
|
|
650
654
|
compileSdkVersion: { type: 'integer', nullable: true },
|
|
651
655
|
targetSdkVersion: { type: 'integer', nullable: true },
|
|
652
656
|
buildToolsVersion: { type: 'string', nullable: true },
|
|
657
|
+
cmakeVersion: { type: 'string', nullable: true },
|
|
653
658
|
kotlinVersion: { type: 'string', nullable: true },
|
|
654
659
|
|
|
655
660
|
enableMinifyInReleaseBuilds: { type: 'boolean', nullable: true },
|