@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.
- package/app.plugin.js +2 -1
- 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
|
-
|
|
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.
|