expo-gl 15.0.5-canary-20250221-ef26fed → 15.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,8 +10,19 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
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))
13
+ ## 15.0.5 2025-04-01
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [ios] Fixed build errors in XCode 16.3 ([#35811](https://github.com/expo/expo/pull/35811) by [@chrfalch](https://github.com/chrfalch))
18
+
19
+ ## 15.0.4 — 2025-01-19
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
23
+ ## 15.0.3 — 2025-01-10
24
+
25
+ _This version does not introduce any user-facing changes._
15
26
 
16
27
  ## 15.0.2 — 2024-11-14
17
28
 
@@ -1,15 +1,19 @@
1
- plugins {
2
- id 'com.android.library'
3
- id 'expo-module-gradle-plugin'
4
- }
1
+ apply plugin: 'com.android.library'
2
+
3
+ group = 'host.exp.exponent'
4
+ version = '15.0.5'
5
5
 
6
6
  def reactNativeArchitectures() {
7
7
  def value = project.getProperties().get("reactNativeArchitectures")
8
8
  return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
9
9
  }
10
10
 
11
- group = 'host.exp.exponent'
12
- version = '15.0.2'
11
+ def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
12
+ apply from: expoModulesCorePlugin
13
+ applyKotlinExpoModulesCorePlugin()
14
+ useCoreDependencies()
15
+ useDefaultAndroidSdkVersions()
16
+ useExpoPublishing()
13
17
 
14
18
  android {
15
19
  if (rootProject.hasProperty("ndkPath")) {
@@ -22,7 +26,7 @@ android {
22
26
  namespace "expo.modules.gl"
23
27
  defaultConfig {
24
28
  versionCode 31
25
- versionName "15.0.2"
29
+ versionName "15.0.5"
26
30
 
27
31
  externalNativeBuild {
28
32
  cmake {
@@ -128,7 +128,7 @@ class EXGLContext {
128
128
  std::atomic_uint nextObjectId = 1;
129
129
 
130
130
  bool supportsWebGL2 = false;
131
- std::set<const std::string> supportedExtensions;
131
+ std::set<std::string> supportedExtensions;
132
132
 
133
133
  // function that calls flush on GL thread - on Android it is passed by JNI
134
134
  std::function<void(void)> flushOnGLThread = [&] {};
@@ -1,6 +1,7 @@
1
1
  {
2
- "platforms": ["apple", "android"],
3
- "apple": {
2
+ "name": "expo-gl",
3
+ "platforms": ["ios", "android"],
4
+ "ios": {
4
5
  "podspecPath": "./ExpoGL.podspec",
5
6
  "modules": ["GLViewModule"]
6
7
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-gl",
3
- "version": "15.0.5-canary-20250221-ef26fed",
3
+ "version": "15.0.5",
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.5-canary-20250221-ef26fed",
46
+ "expo-module-scripts": "^4.0.4",
47
47
  "react-test-renderer": "18.3.1"
48
48
  },
49
49
  "peerDependencies": {
50
- "expo": "53.0.0-canary-20250221-ef26fed",
50
+ "expo": "*",
51
51
  "react": "*",
52
52
  "react-native": "*",
53
53
  "react-native-web": "*"
@@ -56,5 +56,6 @@
56
56
  "react-native-web": {
57
57
  "optional": true
58
58
  }
59
- }
59
+ },
60
+ "gitHead": "b08a0bd52965f85871c12c31da16a45e2cd26c4c"
60
61
  }