Skip to content

Commit

Permalink
Further setup and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubJankowski committed Dec 7, 2022
1 parent 9cb7301 commit 2c16f8b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -444,11 +444,10 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = /Resources/Info.plist;
INFOPLIST_FILE = "$(SRCROOT)/Resources/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -457,7 +456,6 @@
MARKETING_VERSION = 1.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.ably.tracking.example.subscriber;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
Expand All @@ -468,11 +466,10 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_IDENTITY = "Apple Distribution";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = /Resources/Info.plist;
INFOPLIST_FILE = "$(SRCROOT)/Resources/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -481,7 +478,6 @@
MARKETING_VERSION = 1.0.0;
PRODUCT_BUNDLE_IDENTIFIER = com.ably.tracking.example.subscriber;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
Expand Down
14 changes: 8 additions & 6 deletions Examples/SubscriberExample/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@ default_platform(:ios)
readonly: true)
build_app(scheme: "SubscriberExample",
project: "SubscriberExample.xcodeproj",
export_method: 'app-store',
configuration: "Release",
export_method: "app-store",
xcargs: "-allowProvisioningUpdates",
output_name: "SubscriberExample.ipa",
clean: true,
include_bitcode: true)
upload_to_testflight(
skip_submission: true,
skip_waiting_for_build_processing: true,
apple_id: "6444409821",
itc_provider:"XXY98AVDR6")
#upload_to_testflight(
#skip_submission: true,
#skip_waiting_for_build_processing: true,
#apple_id: "6444409821",
#itc_provider:"XXY98AVDR6")
end

# Example output: 2022.12.1.1454
Expand Down

0 comments on commit 2c16f8b

Please sign in to comment.