Skip to content

Commit 2b3899a

Browse files
authored
fix: syntax error in iOS xcodeproject (#309)
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; # ------------------------------------------- ```
1 parent 07b4d73 commit 2b3899a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: template/ios/HelloWorld.xcodeproj/project.pbxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@
562562
COPY_PHASE_STRIP = NO;
563563
ENABLE_STRICT_OBJC_MSGSEND = YES;
564564
ENABLE_TESTABILITY = YES;
565-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ;
565+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
566566
GCC_C_LANGUAGE_STANDARD = gnu99;
567567
GCC_DYNAMIC_NO_PIC = NO;
568568
GCC_NO_COMMON_BLOCKS = YES;

0 commit comments

Comments
 (0)