expo-gl 12.0.0 → 12.0.1

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
+ ## 12.0.1 — 2022-11-29
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fixed error for duplicated META-INF files when building on Android. ([#20251](https://github.com/expo/expo/pull/20251) by [@kudo](https://github.com/kudo))
18
+
13
19
  ## 12.0.0 — 2022-10-25
14
20
 
15
21
  ### 🛠 Breaking changes
@@ -5,7 +5,7 @@ apply plugin: 'kotlin-android'
5
5
  apply plugin: 'maven-publish'
6
6
 
7
7
  group = 'host.exp.exponent'
8
- version = '12.0.0'
8
+ version = '12.0.1'
9
9
 
10
10
  def REACT_NATIVE_DIR = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).parent
11
11
  def RN_BUILD_FROM_SOURCE = findProject(":ReactAndroid") != null
@@ -94,7 +94,7 @@ android {
94
94
  minSdkVersion safeExtGet("minSdkVersion", 21)
95
95
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
96
96
  versionCode 31
97
- versionName "12.0.0"
97
+ versionName "12.0.1"
98
98
 
99
99
  externalNativeBuild {
100
100
  cmake {
@@ -114,7 +114,7 @@ android {
114
114
 
115
115
  packagingOptions {
116
116
  // Gradle will add cmake target dependencies into packaging.
117
- excludes = [
117
+ excludes += [
118
118
  "**/libc++_shared.so",
119
119
  "**/libjsi.so",
120
120
  ]
@@ -6,30 +6,30 @@
6
6
  <array>
7
7
  <dict>
8
8
  <key>LibraryIdentifier</key>
9
- <string>ios-arm64</string>
9
+ <string>ios-arm64_x86_64-simulator</string>
10
10
  <key>LibraryPath</key>
11
11
  <string>EXGL.framework</string>
12
12
  <key>SupportedArchitectures</key>
13
13
  <array>
14
14
  <string>arm64</string>
15
+ <string>x86_64</string>
15
16
  </array>
16
17
  <key>SupportedPlatform</key>
17
18
  <string>ios</string>
19
+ <key>SupportedPlatformVariant</key>
20
+ <string>simulator</string>
18
21
  </dict>
19
22
  <dict>
20
23
  <key>LibraryIdentifier</key>
21
- <string>ios-arm64_x86_64-simulator</string>
24
+ <string>ios-arm64</string>
22
25
  <key>LibraryPath</key>
23
26
  <string>EXGL.framework</string>
24
27
  <key>SupportedArchitectures</key>
25
28
  <array>
26
29
  <string>arm64</string>
27
- <string>x86_64</string>
28
30
  </array>
29
31
  <key>SupportedPlatform</key>
30
32
  <string>ios</string>
31
- <key>SupportedPlatformVariant</key>
32
- <string>simulator</string>
33
33
  </dict>
34
34
  </array>
35
35
  <key>CFBundlePackageType</key>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-gl",
3
- "version": "12.0.0",
3
+ "version": "12.0.1",
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",
@@ -49,5 +49,5 @@
49
49
  "peerDependencies": {
50
50
  "expo": "*"
51
51
  },
52
- "gitHead": "eab2b09c735fb0fc2bf734a3f29a6593adba3838"
52
+ "gitHead": "c86764f7ab729a18279066774c1ca2a8d79324bb"
53
53
  }