Skip to content

Commit

Permalink
Profiles for PNDecryptionService
Browse files Browse the repository at this point in the history
  • Loading branch information
flypaper0 committed Feb 8, 2023
1 parent 7f9ba11 commit 3b44682
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .env.Showcase
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SCHEME = "Showcase"
APP_IDENTIFIER = "com.walletconnect.chat"
APPLE_ID = "1634760092"
PROVISIONING_PROFILE_SPECIFIER = "match AppStore com.walletconnect.chat"
MATCH_IDENTIFIERS = "com.walletconnect.chat"
APPLE_ID = "1634760092"
4 changes: 2 additions & 2 deletions .env.WalletApp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SCHEME = "WalletApp"
APP_IDENTIFIER = "com.walletconnect.walletapp"
APPLE_ID = "1667351690"
PROVISIONING_PROFILE_SPECIFIER = "match AppStore com.walletconnect.walletapp"
MATCH_IDENTIFIERS = "com.walletconnect.chat,com.walletconnect.walletapp.PNDecryptionService"
APPLE_ID = "1667351690"
8 changes: 4 additions & 4 deletions Example/ExampleApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2704,10 +2704,10 @@
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.walletconnect.walletapp;
PRODUCT_BUNDLE_IDENTIFIER = com.walletconnect.walletapp.PNDecryptionService;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.walletconnect.walletapp";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development com.walletconnect.walletapp.PNDecryptionService";
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
Expand Down Expand Up @@ -2737,10 +2737,10 @@
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.walletconnect.walletapp;
PRODUCT_BUNDLE_IDENTIFIER = com.walletconnect.walletapp.PNDecryptionService;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore com.walletconnect.walletapp";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore com.walletconnect.walletapp.PNDecryptionService";
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
Expand Down
7 changes: 1 addition & 6 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ platform :ios do
match(
readonly: false,
type: "appstore",
app_identifier: ENV["APP_IDENTIFIER"],
app_identifier: ENV["MATCH_IDENTIFIERS"],
git_url: "https://github.com/WalletConnect/match-swift.git",
git_basic_authorization: options[:token],
api_key: api_key
Expand All @@ -80,11 +80,6 @@ platform :ios do
project: "Example/ExampleApp.xcodeproj",
scheme: ENV["SCHEME"],
export_method: "app-store",
export_options: {
provisioningProfiles: {
ENV["APP_IDENTIFIER"] => ENV["PROVISIONING_PROFILE_SPECIFIER"]
}
}
)
upload_to_testflight(
apple_id: ENV["APPLE_ID"],
Expand Down

0 comments on commit 3b44682

Please sign in to comment.