expo-modules-core 3.0.4 → 3.0.5
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
|
+
## 3.0.5 — 2025-08-21
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
13
17
|
## 3.0.4 — 2025-08-19
|
|
14
18
|
|
|
15
19
|
### 🐛 Bug fixes
|
|
@@ -21,6 +25,7 @@
|
|
|
21
25
|
### 💡 Others
|
|
22
26
|
|
|
23
27
|
- [ios] Wrap system color references for dev client. ([#38912](https://github.com/expo/expo/pull/38912) by [@douglowder](https://github.com/douglowder))
|
|
28
|
+
- [Android] Update min, target, and compile SDK versions. ([#38938](https://github.com/expo/expo/pull/38938) by [@alanjhughes](https://github.com/alanjhughes))
|
|
24
29
|
|
|
25
30
|
## 3.0.2 — 2025-08-16
|
|
26
31
|
|
|
@@ -62,11 +62,11 @@ ext.applyKspJvmToolchain = {
|
|
|
62
62
|
// Setup build options that are common for all modules
|
|
63
63
|
ext.useDefaultAndroidSdkVersions = {
|
|
64
64
|
project.android {
|
|
65
|
-
compileSdkVersion project.ext.safeExtGet("compileSdkVersion",
|
|
65
|
+
compileSdkVersion project.ext.safeExtGet("compileSdkVersion", 36)
|
|
66
66
|
|
|
67
67
|
defaultConfig {
|
|
68
|
-
minSdkVersion project.ext.safeExtGet("minSdkVersion",
|
|
69
|
-
targetSdkVersion project.ext.safeExtGet("targetSdkVersion",
|
|
68
|
+
minSdkVersion project.ext.safeExtGet("minSdkVersion", 24)
|
|
69
|
+
targetSdkVersion project.ext.safeExtGet("targetSdkVersion", 36)
|
|
70
70
|
}
|
|
71
71
|
|
|
72
72
|
lintOptions {
|
package/android/build.gradle
CHANGED
|
@@ -25,7 +25,7 @@ if (shouldIncludeCompose) {
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
group = 'host.exp.exponent'
|
|
28
|
-
version = '3.0.
|
|
28
|
+
version = '3.0.5'
|
|
29
29
|
|
|
30
30
|
def isExpoModulesCoreTests = {
|
|
31
31
|
Gradle gradle = getGradle()
|
|
@@ -75,7 +75,7 @@ android {
|
|
|
75
75
|
defaultConfig {
|
|
76
76
|
consumerProguardFiles 'proguard-rules.pro'
|
|
77
77
|
versionCode 1
|
|
78
|
-
versionName "3.0.
|
|
78
|
+
versionName "3.0.5"
|
|
79
79
|
buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
|
|
80
80
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled.toString()
|
|
81
81
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-modules-core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"description": "The core of Expo Modules architecture",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"@testing-library/react-native": "^13.2.0",
|
|
50
50
|
"expo-module-scripts": "^5.0.2"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "3275774c9286477adba9bc226d3923a996217ee4"
|
|
53
53
|
}
|