Skip to content

Commit

Permalink
Update workflow with right bundle id
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobkoerber committed Nov 18, 2023
1 parent c853664 commit f1cdacc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy_beta.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Deploy Beta to TestFlight and Play Store

on:
workflow_dispatch:
push:
branches:
- main
Expand Down
15 changes: 12 additions & 3 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,8 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 2J3C6P6X3N;
ENABLE_BITCODE = NO;
Expand All @@ -383,8 +385,9 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = de.tum.gocast;
PRODUCT_BUNDLE_IDENTIFIER = de.tum.cit.ase.ios2324.tum;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
Expand Down Expand Up @@ -549,6 +552,8 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 2J3C6P6X3N;
ENABLE_BITCODE = NO;
Expand All @@ -558,8 +563,9 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = de.tum.gocast;
PRODUCT_BUNDLE_IDENTIFIER = de.tum.cit.ase.ios2324.tum;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
Expand All @@ -573,6 +579,8 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 2J3C6P6X3N;
ENABLE_BITCODE = NO;
Expand All @@ -582,8 +590,9 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = de.tum.gocast;
PRODUCT_BUNDLE_IDENTIFIER = de.tum.cit.ase.ios2324.tum;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
VERSIONING_SYSTEM = "apple-generic";
Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
app_identifier("de.tum.gocast")
app_identifier("de.tum.cit.ase.ios2324.tum")
team_name("Technische Universitaet Muenchen")
team_id("2J3C6P6X3N")
itc_team_name("Technische Universitaet Muenchen")
Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ platform :ios do
update_code_signing_settings(
use_automatic_signing: false,
targets: 'Runner',
profile_name: 'match AppStore de.tum.gocast 1700084531',
profile_name: 'match AppStore de.tum.cit.ase.ios2324.tum',
code_sign_identity: "iPhone Distribution",
sdk: "iphoneos*",
team_id: "2J3C6P6X3N"
Expand Down
2 changes: 1 addition & 1 deletion ios/fastlane/Matchfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
git_url("[email protected]:TUM-Dev/gocast-Match.git")
storage_mode("git")
type("appstore")
app_identifier(["de.tum.gocast"])
app_identifier(["de.tum.cit.ase.ios2324.tum"])

0 comments on commit f1cdacc

Please sign in to comment.