expo-gl 15.0.5-canary-20250124-42fe332 → 15.0.5-canary-20250207-8bc5146
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 +2 -7
- package/android/build.gradle +21 -9
- package/expo-module.config.json +2 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,13 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
_This version does not introduce any user-facing changes._
|
|
16
|
-
|
|
17
|
-
## 15.0.3 — 2025-01-10
|
|
18
|
-
|
|
19
|
-
_This version does not introduce any user-facing changes._
|
|
13
|
+
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
|
14
|
+
- [apple] Migrate remaining `expo-module.config.json` to unified platform syntax. ([#34445](https://github.com/expo/expo/pull/34445) by [@reichhartd](https://github.com/reichhartd))
|
|
20
15
|
|
|
21
16
|
## 15.0.2 — 2024-11-14
|
|
22
17
|
|
package/android/build.gradle
CHANGED
|
@@ -1,19 +1,31 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
def useLegacyExpoModulesCorePlugin = {
|
|
4
|
+
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
5
|
+
apply from: expoModulesCorePlugin
|
|
6
|
+
applyKotlinExpoModulesCorePlugin()
|
|
7
|
+
useCoreDependencies()
|
|
8
|
+
useDefaultAndroidSdkVersions()
|
|
9
|
+
useExpoPublishing()
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
try {
|
|
13
|
+
apply plugin: 'expo-module-gradle-plugin'
|
|
14
|
+
} catch (e) {
|
|
15
|
+
if (!e instanceof UnknownPluginException) {
|
|
16
|
+
throw e
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
useLegacyExpoModulesCorePlugin()
|
|
20
|
+
}
|
|
5
21
|
|
|
6
22
|
def reactNativeArchitectures() {
|
|
7
23
|
def value = project.getProperties().get("reactNativeArchitectures")
|
|
8
24
|
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
|
9
25
|
}
|
|
10
26
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
applyKotlinExpoModulesCorePlugin()
|
|
14
|
-
useCoreDependencies()
|
|
15
|
-
useDefaultAndroidSdkVersions()
|
|
16
|
-
useExpoPublishing()
|
|
27
|
+
group = 'host.exp.exponent'
|
|
28
|
+
version = '15.0.2'
|
|
17
29
|
|
|
18
30
|
android {
|
|
19
31
|
if (rootProject.hasProperty("ndkPath")) {
|
|
@@ -26,7 +38,7 @@ android {
|
|
|
26
38
|
namespace "expo.modules.gl"
|
|
27
39
|
defaultConfig {
|
|
28
40
|
versionCode 31
|
|
29
|
-
versionName "15.0.
|
|
41
|
+
versionName "15.0.2"
|
|
30
42
|
|
|
31
43
|
externalNativeBuild {
|
|
32
44
|
cmake {
|
package/expo-module.config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-gl",
|
|
3
|
-
"version": "15.0.5-canary-
|
|
3
|
+
"version": "15.0.5-canary-20250207-8bc5146",
|
|
4
4
|
"description": "Provides GLView that acts as OpenGL ES render target and gives GL context object implementing WebGL 2.0 specification.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"@types/invariant": "^2.2.33",
|
|
44
44
|
"@types/offscreencanvas": "2019.6.4",
|
|
45
45
|
"@types/webgl2": "^0.0.6",
|
|
46
|
-
"expo-module-scripts": "4.0.4-canary-
|
|
46
|
+
"expo-module-scripts": "4.0.4-canary-20250207-8bc5146",
|
|
47
47
|
"react-test-renderer": "18.3.1"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"expo": "53.0.0-canary-
|
|
50
|
+
"expo": "53.0.0-canary-20250207-8bc5146",
|
|
51
51
|
"react": "*",
|
|
52
52
|
"react-native": "*",
|
|
53
53
|
"react-native-web": "*"
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"optional": true
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "8bc5146852ccd7033138bac9ef8d3c41ae85a211"
|
|
61
61
|
}
|