Skip to content

Commit

Permalink
Fixes after merging upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Dec 12, 2023
1 parent 5e73210 commit 4f4107c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions ios/fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
app_identifier("io.bluewallet.bluewallet")
app_identifier("org.groestlcoin.bluewallet123")
apple_id(ENV["APPLE_ID"]) # Your Apple email ID
itc_team_id(ENV["ITC_TEAM_ID"]) # App Store Connect Team ID
itc_team_id(ENV["ITC_TEAM_ID"]) # App Store Connect Team ID
32 changes: 16 additions & 16 deletions ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ platform :ios do
desc "Create a temporary keychain"
lane :create_temp_keychain do
UI.message("Creating a temporary keychain...")

create_keychain(
name: "temp_keychain",
password: ENV["KEYCHAIN_PASSWORD"],
Expand All @@ -19,19 +19,19 @@ platform :ios do
timeout: 3600,
lock_when_sleeps: true
)

UI.message("Temporary keychain created successfully.")
end

desc "Synchronize certificates and provisioning profiles"
lane :setup_provisioning_profiles do
UI.message("Setting up provisioning profiles...")
target_to_app_identifier = {
'BlueWallet' => 'io.bluewallet.bluewallet',
'BlueWalletWatch' => 'io.bluewallet.bluewallet.watch',
'BlueWalletWatchExtension' => 'io.bluewallet.bluewallet.watch.extension',
'Stickers' => 'io.bluewallet.bluewallet.Stickers',
'MarketWidget' => 'io.bluewallet.bluewallet.MarketWidget'
'BlueWallet' => 'org.groestlcoin.bluewallet123',
'BlueWalletWatch' => 'org.groestlcoin.bluewallet123.watch',
'BlueWalletWatchExtension' => 'org.groestlcoin.bluewallet123.watch.extension',
'Stickers' => 'org.groestlcoin.bluewallet123.Stickers',
'MarketWidget' => 'org.groestlcoin.bluewallet123.MarketWidget'
}

target_to_app_identifier.each do |target, app_identifier|
Expand All @@ -58,13 +58,13 @@ platform :ios do
desc "Increment build number"
lane :increment_build_number_lane do
UI.message("Incrementing build number to current timestamp...")

# Set the new build number
increment_build_number(
xcodeproj: "BlueWallet.xcodeproj",
xcodeproj: "BlueWallet.xcodeproj",
build_number: ENV["NEW_BUILD_NUMBER"]
)

UI.message("Build number set to: #{ENV['NEW_BUILD_NUMBER']}")
end

Expand All @@ -89,11 +89,11 @@ platform :ios do
export_options: {
signingStyle: "manual",
provisioningProfiles: {
'io.bluewallet.bluewallet' => 'match AppStore io.bluewallet.bluewallet',
'io.bluewallet.bluewallet.watch' => 'match AppStore io.bluewallet.bluewallet.watch',
'io.bluewallet.bluewallet.watch.extension' => 'match AppStore io.bluewallet.bluewallet.watch.extension',
'io.bluewallet.bluewallet.Stickers' => 'match AppStore io.bluewallet.bluewallet.Stickers',
'io.bluewallet.bluewallet.MarketWidget' => 'match AppStore io.bluewallet.bluewallet.MarketWidget'
'org.groestlcoin.bluewallet123' => 'match AppStore org.groestlcoin.bluewallet123',
'org.groestlcoin.bluewallet123.watch' => 'match AppStore org.groestlcoin.bluewallet123.watch',
'org.groestlcoin.bluewallet123.watch.extension' => 'match AppStore org.groestlcoin.bluewallet123.watch.extension',
'org.groestlcoin.bluewallet123.Stickers' => 'match AppStore org.groestlcoin.bluewallet123.Stickers',
'org.groestlcoin.bluewallet123.MarketWidget' => 'match AppStore org.groestlcoin.bluewallet123.MarketWidget'
}
},
xcargs: "GCC_PREPROCESSOR_DEFINITIONS='$(inherited) VERBOSE_LOGGING=1'",
Expand All @@ -111,7 +111,7 @@ platform :ios do
begin
UI.message("Uploading to TestFlight without processing wait...")
changelog = ENV["LATEST_COMMIT_MESSAGE"]

upload_to_testflight(
api_key_path: "appstore_api_key.json",
ipa: "./build/BlueWallet.#{ENV['PROJECT_VERSION']}(#{ENV['NEW_BUILD_NUMBER']}).ipa",
Expand Down
4 changes: 2 additions & 2 deletions ios/fastlane/Matchfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
git_url(ENV["GIT_URL"])

# Define the type of match to run, could be one of 'appstore', 'adhoc', 'development', or 'enterprise'.
# For example, use 'appstore' for App Store builds, 'adhoc' for Ad Hoc distribution,
# For example, use 'appstore' for App Store builds, 'adhoc' for Ad Hoc distribution,
# 'development' for development builds, and 'enterprise' for In-House (enterprise) distribution.
type("appstore")

app_identifier(["io.bluewallet.bluewallet", "io.bluewallet.bluewallet.watch", "io.bluewallet.bluewallet.watch.extension", "io.bluewallet.bluewallet.Stickers", "io.bluewallet.bluewallet.MarketWidget"]) # Replace with your app identifiers
app_identifier(["org.groestlcoin.bluewallet123", "org.groestlcoin.bluewallet123.watch", "org.groestlcoin.bluewallet123.watch.extension", "org.groestlcoin.bluewallet123.Stickers", "org.groestlcoin.bluewallet123.MarketWidget"]) # Replace with your app identifiers

# List of app identifiers to create provisioning profiles for.
# Replace with your app's bundle identifier(s).
Expand Down

0 comments on commit 4f4107c

Please sign in to comment.