@dolami-inc/react-native-expo-unity 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/app.plugin.js +2 -1
  2. package/package.json +1 -1
package/app.plugin.js CHANGED
@@ -36,7 +36,8 @@ const withExpoUnity = (config, options = {}) => {
36
36
  settings['ENABLE_BITCODE'] = 'NO';
37
37
 
38
38
  // Unity headers require C++17.
39
- settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17';
39
+ // Must be quoted — '+' causes CocoaPods' plist parser to fail if unquoted.
40
+ settings['CLANG_CXX_LANGUAGE_STANDARD'] = '"c++17"';
40
41
 
41
42
  // Add the Unity framework directory to the search paths so that
42
43
  // UnityFramework.framework can be found at build time.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dolami-inc/react-native-expo-unity",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Unity as a Library (UaaL) bridge for React Native / Expo",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",