Skip to content

Commit

Permalink
change in xcode
Browse files Browse the repository at this point in the history
  • Loading branch information
quetool committed Jul 17, 2024
1 parent ae0519d commit dfbe25a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions example/dapp/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.walletconnect.flutterdapp;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
PROVISIONING_PROFILE_SPECIFIER = "match Development com.walletconnect.flutterdapp";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.walletconnect.flutterdapp";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
Expand Down Expand Up @@ -535,7 +535,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = com.walletconnect.flutterdapp;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
PROVISIONING_PROFILE_SPECIFIER = "match AppStore com.walletconnect.flutterdapp";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore com.walletconnect.flutterdapp";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
Expand Down
13 changes: 12 additions & 1 deletion example/dapp/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ platform :ios do
in_house: false,
)

match(
puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
puts "app_identifier #{app_identifier}"
puts "match_git_url #{options[:match_git_url]}"
puts "git_basic_authorization #{options[:token]}"
puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"

_match_result = match(
readonly: false,
type: "appstore",
app_identifier: "#{app_identifier}",
Expand All @@ -72,7 +78,12 @@ platform :ios do
include_all_certificates: true,
force_for_new_devices: true,
force_for_new_certificates: true,
verbose: true,
)

puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
puts "match_result #{_match_result}"
puts "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"

number = latest_testflight_build_number(
app_identifier: "#{app_identifier}",
Expand Down

0 comments on commit dfbe25a

Please sign in to comment.