Skip to content

Commit

Permalink
Added missing copyright headers
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-saia-datadog committed Jun 13, 2024
1 parent dc2ea2e commit 8115ccf
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/plugin/common/config.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2016-Present Datadog, Inc.
*/

export const DEFAULT_DATADOG_GRADLE_PLUGIN_VERSION = "1.14.0";
export const IOS_DSYMS_BUILD_PHASE_NAME = "Upload dSYMs to Datadog";
6 changes: 6 additions & 0 deletions src/plugin/common/exports.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2016-Present Datadog, Inc.
*/

export const IOS_SOURCEMAP_FILE_EXPORT =
"export SOURCEMAP_FILE=$DERIVED_FILE_DIR/main.jsbundle.map";

Expand Down
6 changes: 6 additions & 0 deletions src/plugin/common/utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache License Version 2.0.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2016-Present Datadog, Inc.
*/

export const escapeStringForIOSBuildPhase = (str: string) => {
return str
.replace(/\\/g, "\\\\") // Escape backslashes
Expand Down

0 comments on commit 8115ccf

Please sign in to comment.