Skip to content

Commit

Permalink
fix: syntax error in iOS xcodeproject (#309)
Browse files Browse the repository at this point in the history
Fixes regression caused by:


```
.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/nanaimo-0.3.0/lib/nanaimo/reader.rb:284:in `raise_parser_error': [!] Invalid character "\\xE2" in unquoted string (Nanaimo::Reader::ParseError)
   #  -------------------------------------------
   #                            ENABLE_STRICT_OBJC_MSGSEND = YES;
   #                            ENABLE_TESTABILITY = YES;
565>                            "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ”;
                                                                         ^
   #                            GCC_C_LANGUAGE_STANDARD = gnu99;
   #                            GCC_DYNAMIC_NO_PIC = NO;
   #  -------------------------------------------
```
  • Loading branch information
mfazekas committed Oct 27, 2022
1 parent 07b4d73 commit 2b3899a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/ios/HelloWorld.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ;
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
Expand Down

0 comments on commit 2b3899a

Please sign in to comment.