File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 628
628
"-DFOLLY_USE_LIBCPP=1",
629
629
"-DFOLLY_CFG_NO_COROUTINES=1",
630
630
);
631
- OTHER_LDFLAGS = (
632
- "$(inherited)",
633
- " ",
634
- );
631
+ OTHER_LDFLAGS = "$(inherited) ";
635
632
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
636
633
SDKROOT = iphoneos;
637
634
USE_HERMES = true;
667
664
CLANG_WARN_SUSPICIOUS_MOVE = YES;
668
665
CLANG_WARN_UNREACHABLE_CODE = YES;
669
666
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
667
+ CODE_SIGN_IDENTITY = "Apple Distribution";
670
668
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
671
669
COPY_PHASE_STRIP = YES;
672
670
ENABLE_NS_ASSERTIONS = NO;
699
697
"-DFOLLY_USE_LIBCPP=1",
700
698
"-DFOLLY_CFG_NO_COROUTINES=1",
701
699
);
702
- OTHER_LDFLAGS = (
703
- "$(inherited)",
704
- " ",
705
- );
700
+ OTHER_LDFLAGS = "$(inherited) ";
706
701
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
707
702
SDKROOT = iphoneos;
708
703
USE_HERMES = true;
Original file line number Diff line number Diff line change @@ -16,13 +16,21 @@ platform :ios do
16
16
Base64 . strict_encode64 ( "x-access-token:#{ ENV [ 'MATCH_GITHUB_TOKEN' ] } " )
17
17
end
18
18
19
+ match (
20
+ type : "development" ,
21
+ readonly : true ,
22
+ api_key : api_key ,
23
+ git_branch : "master" ,
24
+ git_basic_authorization : encoded_github_token
25
+ )
26
+
19
27
match (
20
28
type : "appstore" ,
21
29
readonly : true ,
22
30
api_key : api_key ,
23
31
git_branch : "master" ,
24
32
#password: ENV['MATCH_PASSWORD'], # will be picked up from environment variables
25
- git_basic_authorization : encoded_github_token
33
+ git_basic_authorization : encoded_github_token
26
34
)
27
35
28
36
build_ios_app (
You can’t perform that action at this time.
0 commit comments