Adds script to upload dsyms to firebase

main
Laurent 2 years ago
parent 6eb1bfaa34
commit 01103b5f18
  1. 23
      LeCountdown.xcodeproj/project.pbxproj
  2. 4
      LeCountdown/Views/ContentView.swift

@ -982,6 +982,7 @@
C4060DB9297AE73B003FAB80 /* Frameworks */,
C4060DBA297AE73B003FAB80 /* Resources */,
C438C7E72981216300BF3EF9 /* Embed Foundation Extensions */,
C454891F2A2649DC0047D39E /* ShellScript */,
);
buildRules = (
);
@ -1216,6 +1217,28 @@
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
C454891F2A2649DC0047D39E /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputFileListPaths = (
);
inputPaths = (
"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}",
"$(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)",
);
outputFileListPaths = (
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${BUILD_DIR%/Build/*}/SourcePackages/checkouts/firebase-ios-sdk/Crashlytics/run\"\n";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
C4060DB8297AE73B003FAB80 /* Sources */ = {
isa = PBXSourcesBuildPhase;

@ -52,8 +52,12 @@ struct ContentView<T : AbstractTimer>: View {
Spacer()
#if !DEBUG
SiriVolumeView(timer: self.boringContext.siriTimer, siriTipShown: self.$siriTipShown)
#endif
LiveTimerListView()
.environment(\.managedObjectContext, viewContext)
.environmentObject(conductor)

Loading…
Cancel
Save