@dynatrace/react-native-plugin 2.299.1 → 2.301.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/README.md +42 -13
  2. package/android/build.gradle +1 -1
  3. package/files/plugin.gradle +1 -1
  4. package/ios/DynatraceRNBridge.mm +1 -3
  5. package/lib/CreateElement.js +2 -1
  6. package/lib/community/gesture-handler/Touchables.InstrInfo.js +16 -4
  7. package/lib/community/gesture-handler/Touchables.js +7 -2
  8. package/lib/instrumentor/base/Dynatrace.js +10 -3
  9. package/lib/instrumentor/base/DynatraceBridge.js +6 -2
  10. package/lib/instrumentor/base/DynatraceRootAction.js +4 -1
  11. package/lib/instrumentor/base/DynatraceWebRequestTiming.js +6 -3
  12. package/lib/instrumentor/base/ElementHelper.js +11 -5
  13. package/lib/instrumentor/base/ErrorHandler.js +1 -1
  14. package/lib/instrumentor/base/Logger.js +2 -1
  15. package/lib/instrumentor/base/Picker.js +7 -6
  16. package/lib/instrumentor/base/RefreshControl.js +3 -1
  17. package/lib/instrumentor/base/Switch.js +3 -3
  18. package/lib/instrumentor/base/Touchable.js +9 -8
  19. package/lib/instrumentor/base/configuration/Configuration.js +12 -10
  20. package/lib/instrumentor/base/configuration/ConfigurationPreset.js +0 -1
  21. package/lib/instrumentor/base/configuration/IConfiguration.js +0 -1
  22. package/lib/instrumentor/base/configuration/ManualStartupConfiguration.js +3 -3
  23. package/lib/instrumentor/base/interface/IDynatraceProperties.js +3 -3
  24. package/lib/instrumentor/model/Types.js +10 -11
  25. package/lib/jsx-dev-runtime.js +16 -6
  26. package/lib/jsx-runtime.js +21 -7
  27. package/lib/metro/getSourceMapInfo.js +2 -1
  28. package/lib/react/Component.js +7 -3
  29. package/lib/react-native/Touchables.js +6 -4
  30. package/lib/react-navigation/ReactNavigation.js +6 -2
  31. package/package.json +175 -171
  32. package/react-native-dynatrace.podspec +1 -1
  33. package/src/lib/instrumentor/base/interface/NativeDynatraceBridge.ts +150 -78
@@ -19,19 +19,33 @@ try {
19
19
  if (_jsxRuntime != null) {
20
20
  const jsxProd = (type, config, maybeKey) => jsxHelper(_jsxRuntime.jsx, type, config, [maybeKey]);
21
21
  const jsxDev = (type, config, maybeKey, source, self) => jsxHelper(_jsxRuntime.jsx, type, config, [maybeKey, source, self]);
22
- const jsxsDev = (type, config, maybeKey, source, self) => jsxHelper(_jsxRuntime.jsxs, type, config, [maybeKey, source, self]);
22
+ const jsxsDev = (type, config, maybeKey, source, self) => jsxHelper(_jsxRuntime.jsxs, type, config, [
23
+ maybeKey,
24
+ source,
25
+ self,
26
+ ]);
23
27
  const jsxHelper = (jsxFn, type, config, args) => {
24
- if (type !== undefined && type._dtInfo !== undefined && !(0, ElementHelper_1.isDtActionIgnore)(config)) {
28
+ if (type !== undefined &&
29
+ type._dtInfo !== undefined &&
30
+ !(0, ElementHelper_1.isDtActionIgnore)(config)) {
25
31
  if (type._dtInfo.type === Types_1.Types.FunctionalComponent) {
26
- const wrapperProps = { children: [] };
27
- wrapperProps.dtActionName = (config !== undefined &&
28
- config.dtActionName !== undefined) ? config.dtActionName : type._dtInfo.name;
32
+ const wrapperProps = {
33
+ children: [],
34
+ };
35
+ wrapperProps.dtActionName =
36
+ config !== undefined &&
37
+ config.dtActionName !== undefined
38
+ ? config.dtActionName
39
+ : type._dtInfo.name;
29
40
  wrapperProps.children.push(jsxFn(type, config, ...args));
30
41
  return _jsxRuntime.jsxs(Component_1.DynatraceFnWrapper, wrapperProps);
31
42
  }
32
43
  else if (type._dtInfo.type === Types_1.Types.ClassComponent &&
33
- type.prototype !== undefined && type.prototype.isReactComponent !== undefined) {
34
- const wrapperProps = { children: [] };
44
+ type.prototype !== undefined &&
45
+ type.prototype.isReactComponent !== undefined) {
46
+ const wrapperProps = {
47
+ children: [],
48
+ };
35
49
  wrapperProps.children.push(jsxFn(type, config, ...args));
36
50
  return _jsxRuntime.jsxs(Component_1.DynatraceClassWrapper, wrapperProps);
37
51
  }
@@ -7,7 +7,8 @@ const getSourceMapInfo = (module, options) => {
7
7
  const dataOrig = originalSourceMapInfo(module, options);
8
8
  try {
9
9
  if (!Boolean(options.excludeSource)) {
10
- const correctPath = module.path.replace(pathsConstants.getApplicationPath(), '') + '.dtx';
10
+ const correctPath = module.path.replace(pathsConstants.getApplicationPath(), '') +
11
+ '.dtx';
11
12
  dataOrig.source = fileOperation.readTextFromFileSync(pathNode.join(pathsConstants.getBuildPath(), correctPath));
12
13
  }
13
14
  }
@@ -29,9 +29,12 @@ class DynatraceClassWrapper extends react_1.Component {
29
29
  Logger_1.Logger.logInfo(`Component ${this.wrappingName}: React Native plugin has not been started yet! Component will not be reported!`);
30
30
  }
31
31
  else {
32
- if ((this.componentMounted && ConfigurationHandler_1.ConfigurationHandler.isLifecycleUpdateEnabled()) ||
32
+ if ((this.componentMounted &&
33
+ ConfigurationHandler_1.ConfigurationHandler.isLifecycleUpdateEnabled()) ||
33
34
  !this.componentMounted) {
34
- const actionPrefix = !this.componentMounted ? 'Render ' : 'Update ';
35
+ const actionPrefix = !this.componentMounted
36
+ ? 'Render '
37
+ : 'Update ';
35
38
  this.internalAction = Dynatrace_1.Dynatrace.enterAutoAction(actionPrefix + this.wrappingName);
36
39
  }
37
40
  }
@@ -65,7 +68,8 @@ const getNameFromComponent = (props) => {
65
68
  else {
66
69
  child = props.children;
67
70
  }
68
- if (child.props !== undefined && child.props.dtActionName !== undefined) {
71
+ if (child.props !== undefined &&
72
+ child.props.dtActionName !== undefined) {
69
73
  return child.props.dtActionName;
70
74
  }
71
75
  else if (child.type !== undefined) {
@@ -5,7 +5,7 @@ exports.Pressable = exports.Text = exports.TouchableWithoutFeedback = exports.To
5
5
  const ReactNative = require("react-native");
6
6
  const React = require("react");
7
7
  const Types_1 = require("../instrumentor/model/Types");
8
- exports.Button = React.forwardRef((props, ref) => React.createElement(ReactNative.Button, Object.assign({}, props, { ref: ref })));
8
+ exports.Button = React.forwardRef((props, ref) => (React.createElement(ReactNative.Button, Object.assign({}, props, { ref: ref }))));
9
9
  exports.Button._dtInfo = { type: Types_1.Types.Button };
10
10
  if (typeof ReactNative.TouchableOpacity === 'object') {
11
11
  exports.TouchableOpacity = Object.assign({ _dtInfo: { type: Types_1.Types.TouchableOpacity } }, ReactNative.TouchableOpacity);
@@ -34,8 +34,10 @@ else {
34
34
  _c._dtInfo = { type: Types_1.Types.TouchableNativeFeedback },
35
35
  _c);
36
36
  }
37
- exports.TouchableWithoutFeedback = React.forwardRef((props, ref) => React.createElement(ReactNative.TouchableWithoutFeedback, Object.assign({}, props, { ref: ref })));
38
- exports.TouchableWithoutFeedback._dtInfo = { type: Types_1.Types.TouchableWithoutFeedback };
37
+ exports.TouchableWithoutFeedback = React.forwardRef((props, ref) => (React.createElement(ReactNative.TouchableWithoutFeedback, Object.assign({}, props, { ref: ref }))));
38
+ exports.TouchableWithoutFeedback._dtInfo = {
39
+ type: Types_1.Types.TouchableWithoutFeedback,
40
+ };
39
41
  if (typeof ReactNative.Text === 'object') {
40
42
  exports.Text = Object.assign({ _dtInfo: { type: Types_1.Types.Text } }, ReactNative.Text);
41
43
  }
@@ -45,5 +47,5 @@ else {
45
47
  _d._dtInfo = { type: Types_1.Types.Text },
46
48
  _d);
47
49
  }
48
- exports.Pressable = React.forwardRef((props, ref) => React.createElement(ReactNative.Pressable, Object.assign({}, props, { ref: ref })));
50
+ exports.Pressable = React.forwardRef((props, ref) => (React.createElement(ReactNative.Pressable, Object.assign({}, props, { ref: ref }))));
49
51
  exports.Pressable._dtInfo = { type: Types_1.Types.Pressable };
@@ -6,10 +6,14 @@ const Logger_1 = require("../instrumentor/base/Logger");
6
6
  let isRegistered = false;
7
7
  const registerListener = (navContainer) => {
8
8
  React.useEffect(() => {
9
- if (isRegistered && navContainer.current != null && navContainer.current.addListener != null) {
9
+ if (isRegistered &&
10
+ navContainer.current != null &&
11
+ navContainer.current.addListener != null) {
10
12
  isRegistered = true;
11
13
  navContainer.current.addListener('__unsafe_action__', (data) => {
12
- if (data != null && data.data != null && data.data.action != null) {
14
+ if (data != null &&
15
+ data.data != null &&
16
+ data.data.action != null) {
13
17
  Logger_1.Logger.logDebug(`ReactNavigation Listener Dispatch: ${JSON.stringify(data.data.action)}`);
14
18
  }
15
19
  });
package/package.json CHANGED
@@ -1,177 +1,181 @@
1
1
  {
2
- "name": "@dynatrace/react-native-plugin",
3
- "version": "2.299.1",
4
- "description": "This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.",
5
- "main": "index.js",
6
- "types": "typings/react-native-dynatrace.d.ts",
7
- "bin": {
8
- "instrumentDynatrace": "scripts/Instrument.js",
9
- "configDynatrace": "scripts/CheckConfig.js"
10
- },
11
- "keywords": [
12
- "react-native",
13
- "dynatrace",
14
- "mobile",
15
- "android",
16
- "ios",
17
- "performance",
18
- "monitoring"
2
+ "name": "@dynatrace/react-native-plugin",
3
+ "version": "2.301.2",
4
+ "description": "This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.",
5
+ "main": "index.js",
6
+ "types": "typings/react-native-dynatrace.d.ts",
7
+ "bin": {
8
+ "instrumentDynatrace": "scripts/Instrument.js",
9
+ "configDynatrace": "scripts/CheckConfig.js"
10
+ },
11
+ "keywords": [
12
+ "react-native",
13
+ "dynatrace",
14
+ "mobile",
15
+ "android",
16
+ "ios",
17
+ "performance",
18
+ "monitoring"
19
+ ],
20
+ "rnpm": {
21
+ "plugin": "./command/command.js"
22
+ },
23
+ "scripts": {
24
+ "uninstall": "node ./scripts/Uninstall.js",
25
+ "test": "jest --runInBand",
26
+ "test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
27
+ "tsc": "tsc",
28
+ "tsc:prod": "tsc -p tsconfig.release.json",
29
+ "lint": "eslint --cache src/**/*.ts --ignore-pattern .gitignore",
30
+ "lint:spec": "eslint --cache tests/**/*.ts --cache-file tests/.eslintcache --ignore-pattern .gitignore --fix",
31
+ "prettier:check": "prettier --check ./src",
32
+ "prettier:write": "prettier --write ./src",
33
+ "prepare": "husky"
34
+ },
35
+ "jest": {
36
+ "preset": "react-native",
37
+ "moduleDirectories": [
38
+ "node_modules"
19
39
  ],
20
- "rnpm": {
21
- "plugin": "./command/command.js"
22
- },
23
- "scripts": {
24
- "uninstall": "node ./scripts/Uninstall.js",
25
- "test": "jest --runInBand",
26
- "test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
27
- "tsc": "tsc",
28
- "tsc:prod": "tsc -p tsconfig.release.json",
29
- "lint": "eslint --cache src/**/*.ts --ignore-pattern .gitignore",
30
- "lint:spec": "eslint --cache tests/**/*.ts --cache-file tests/.eslintcache --ignore-pattern .gitignore --fix"
31
- },
32
- "jest": {
33
- "preset": "react-native",
34
- "moduleDirectories": [
35
- "node_modules"
36
- ],
37
- "unmockedModulePathPatterns": [
38
- "node_modules"
39
- ],
40
- "modulePathIgnorePatterns": [
41
- "<rootDir>/src",
42
- "<rootDir>/tests/commandTestTmp",
43
- "node_modules/react-native/local-cli"
44
- ],
45
- "transform": {
46
- "^.+\\.(ts|tsx)$": "ts-jest"
47
- },
48
- "testPathIgnorePatterns": [
49
- "<rootDir>/src",
50
- "<rootDir>/tests/commandTestTmp"
51
- ],
52
- "transformIgnorePatterns": [
53
- "node_modules/(?!(@react-native|react-native)/)"
54
- ],
55
- "setupFiles": [
56
- "<rootDir>/tests/setup/setup.js"
57
- ],
58
- "testResultsProcessor": "jest-junit",
59
- "testRegex": [
60
- "(/__tests__/.*|(\\.|/)(Test|spec))\\.[jt]sx?$"
61
- ]
62
- },
63
- "jest-junit": {
64
- "suiteName": "jest tests",
65
- "outputDirectory": ".",
66
- "outputName": "junit.xml",
67
- "uniqueOutputName": "true",
68
- "ancestorSeparator": " › ",
69
- "usePathForSuiteName": "true"
70
- },
71
- "author": "Dynatrace",
72
- "license": "SEE LICENSE IN LICENSE.md",
73
- "dependencies": {
74
- "@babel/runtime": "^7.25.6",
75
- "jscodeshift": "^17.0.0",
76
- "plist": "^3.1.0",
77
- "proxy-polyfill": "^0.3.2",
78
- "semver": "^7.6.3"
79
- },
80
- "homepage": "https://www.dynatrace.com/",
81
- "peerDependencies": {
82
- "@babel/parser": ">=7.4.4",
83
- "@react-native-picker/picker": ">=1.0.0",
84
- "react": ">=16.11.0",
85
- "react-native": ">=0.62.0"
86
- },
87
- "devDependencies": {
88
- "@babel/cli": "^7.24.5",
89
- "@babel/plugin-proposal-class-properties": "^7.8.3",
90
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
91
- "@babel/plugin-proposal-optional-chaining": "^7.8.3",
92
- "@babel/plugin-transform-flow-strip-types": "^7.8.3",
93
- "@babel/plugin-transform-runtime": "^7.12.1",
94
- "@babel/preset-env": "^7.4.4",
95
- "@babel/preset-react": "^7.8.3",
96
- "@testing-library/react-native": "^7.0.2",
97
- "@types/jest": "^29.5.1",
98
- "@types/jscodeshift": "^0.11.6",
99
- "@types/libxmljs": "^0.18.3",
100
- "@types/node": "^18.17.12",
101
- "@types/plist": "^3.0.2",
102
- "@types/react-native": "^0.63.32",
103
- "@types/semver": "^7.5.0",
104
- "@types/shelljs": "^0.8.8",
105
- "@types/uglify-js": "^3.17.1",
106
- "@typescript-eslint/eslint-plugin": "^5.16.0",
107
- "@typescript-eslint/parser": "^5.16.0",
108
- "compressing": "^1.5.1",
109
- "eslint": "^8.45.0",
110
- "eslint-config-prettier": "^8.5.0",
111
- "eslint-plugin-import": "^2.26.0",
112
- "eslint-plugin-jsdoc": "^39.1.0",
113
- "eslint-plugin-prefer-arrow": "^1.2.3",
114
- "eslint-plugin-unicorn": "^42.0.0",
115
- "jest": "^28.1.3",
116
- "jest-each": "^28.1.3",
117
- "jest-junit": "^14.0.0",
118
- "jest-mock": "^28.1.3",
119
- "npm-check-updates": "^16.10.12",
120
- "prettier": "^2.6.1",
121
- "shelljs": "^0.8.5",
122
- "ts-jest": "^28.0.7",
123
- "ts-mockito": "^2.6.1",
124
- "typescript": "^4.7.4",
125
- "uglify-js": "^3.17.4"
40
+ "unmockedModulePathPatterns": [
41
+ "node_modules"
42
+ ],
43
+ "modulePathIgnorePatterns": [
44
+ "<rootDir>/src",
45
+ "<rootDir>/tests/commandTestTmp",
46
+ "node_modules/react-native/local-cli"
47
+ ],
48
+ "transform": {
49
+ "^.+\\.(ts|tsx)$": "ts-jest"
126
50
  },
127
- "files": [
128
- "command/command.js",
129
- "command/util/*",
130
- "command/interface/*",
131
- "android/build.gradle",
132
- "android/src/**/*",
133
- "ios/**/*",
134
- "files/*",
135
- "lib/instrumentor/base/*.js",
136
- "lib/instrumentor/base/model/*.js",
137
- "lib/instrumentor/base/configuration/*.js",
138
- "lib/instrumentor/base/configuration/interface/*.js",
139
- "lib/instrumentor/base/interface/*.js",
140
- "lib/instrumentor/base/util/*.js",
141
- "lib/instrumentor/model/*.js",
142
- "lib/instrumentor/parser/*.js",
143
- "lib/instrumentor/DynatraceInstrumentation.js",
144
- "lib/*.js",
145
- "lib/community/*.js",
146
- "lib/community/gesture-handler/*.js",
147
- "lib/react-navigation/*.js",
148
- "lib/react-native/*.js",
149
- "lib/react-native/Touchables.jsx",
150
- "lib/react/*.js",
151
- "lib/metro/*.js",
152
- "lib/util/*.js",
153
- "react-native.config.js",
154
- "react-native-dynatrace.js",
155
- "react-native-dynatrace.podspec",
156
- "README.md",
157
- "LICENSE.md",
158
- "scripts/*",
159
- "scripts/api/*",
160
- "scripts/core/*",
161
- "scripts/api/model/*",
162
- "scripts/util/*",
163
- "typings/*",
164
- "package.json",
165
- "jsx-runtime.js",
166
- "jsx-dev-runtime.js",
167
- "src/lib/instrumentor/base/interface/NativeDynatraceBridge.ts"
51
+ "testPathIgnorePatterns": [
52
+ "<rootDir>/src",
53
+ "<rootDir>/tests/commandTestTmp"
54
+ ],
55
+ "transformIgnorePatterns": [
56
+ "node_modules/(?!(@react-native|react-native)/)"
57
+ ],
58
+ "setupFiles": [
59
+ "<rootDir>/tests/setup/setup.js"
168
60
  ],
169
- "codegenConfig": {
170
- "name": "DynatraceBridgeSpec",
171
- "type": "modules",
172
- "jsSrcsDir": "src",
173
- "android": {
174
- "javaPackageName": "com.dynatrace.android.agent"
175
- }
61
+ "testResultsProcessor": "jest-junit",
62
+ "testRegex": [
63
+ "(/__tests__/.*|(\\.|/)(Test|spec))\\.[jt]sx?$"
64
+ ]
65
+ },
66
+ "jest-junit": {
67
+ "suiteName": "jest tests",
68
+ "outputDirectory": ".",
69
+ "outputName": "junit.xml",
70
+ "uniqueOutputName": "true",
71
+ "ancestorSeparator": " › ",
72
+ "usePathForSuiteName": "true"
73
+ },
74
+ "author": "Dynatrace",
75
+ "license": "SEE LICENSE IN LICENSE.md",
76
+ "dependencies": {
77
+ "@babel/runtime": "^7.26.0",
78
+ "jscodeshift": "^17.1.1",
79
+ "plist": "^3.1.0",
80
+ "proxy-polyfill": "^0.3.2",
81
+ "semver": "^7.6.3"
82
+ },
83
+ "homepage": "https://www.dynatrace.com/",
84
+ "peerDependencies": {
85
+ "@babel/parser": ">=7.4.4",
86
+ "@react-native-picker/picker": ">=1.0.0",
87
+ "react": ">=16.11.0",
88
+ "react-native": ">=0.62.0"
89
+ },
90
+ "devDependencies": {
91
+ "@babel/cli": "^7.25.7",
92
+ "@babel/plugin-proposal-class-properties": "^7.8.3",
93
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
94
+ "@babel/plugin-proposal-optional-chaining": "^7.8.3",
95
+ "@babel/plugin-transform-flow-strip-types": "^7.8.3",
96
+ "@babel/plugin-transform-runtime": "^7.12.1",
97
+ "@babel/preset-env": "^7.4.4",
98
+ "@babel/preset-react": "^7.8.3",
99
+ "@testing-library/react-native": "^7.0.2",
100
+ "@types/jest": "^29.5.1",
101
+ "@types/jscodeshift": "^0.11.6",
102
+ "@types/libxmljs": "^0.18.3",
103
+ "@types/node": "^18.17.12",
104
+ "@types/plist": "^3.0.2",
105
+ "@types/react-native": "^0.63.32",
106
+ "@types/semver": "^7.5.0",
107
+ "@types/shelljs": "^0.8.8",
108
+ "@types/uglify-js": "^3.17.1",
109
+ "@typescript-eslint/eslint-plugin": "^5.16.0",
110
+ "@typescript-eslint/parser": "^5.16.0",
111
+ "compressing": "^1.5.1",
112
+ "eslint": "^8.45.0",
113
+ "eslint-config-prettier": "^8.5.0",
114
+ "eslint-plugin-import": "^2.26.0",
115
+ "eslint-plugin-jsdoc": "^39.1.0",
116
+ "eslint-plugin-prefer-arrow": "^1.2.3",
117
+ "eslint-plugin-unicorn": "^42.0.0",
118
+ "husky": "^9.1.6",
119
+ "jest": "^28.1.3",
120
+ "jest-each": "^28.1.3",
121
+ "jest-junit": "^14.0.0",
122
+ "jest-mock": "^28.1.3",
123
+ "npm-check-updates": "^16.10.12",
124
+ "prettier": "^2.6.1",
125
+ "shelljs": "^0.8.5",
126
+ "ts-jest": "^28.0.7",
127
+ "ts-mockito": "^2.6.1",
128
+ "typescript": "^4.7.4",
129
+ "uglify-js": "^3.17.4"
130
+ },
131
+ "files": [
132
+ "command/command.js",
133
+ "command/util/*",
134
+ "command/interface/*",
135
+ "android/build.gradle",
136
+ "android/src/**/*",
137
+ "ios/**/*",
138
+ "files/*",
139
+ "lib/instrumentor/base/*.js",
140
+ "lib/instrumentor/base/model/*.js",
141
+ "lib/instrumentor/base/configuration/*.js",
142
+ "lib/instrumentor/base/configuration/interface/*.js",
143
+ "lib/instrumentor/base/interface/*.js",
144
+ "lib/instrumentor/base/util/*.js",
145
+ "lib/instrumentor/model/*.js",
146
+ "lib/instrumentor/parser/*.js",
147
+ "lib/instrumentor/DynatraceInstrumentation.js",
148
+ "lib/*.js",
149
+ "lib/community/*.js",
150
+ "lib/community/gesture-handler/*.js",
151
+ "lib/react-navigation/*.js",
152
+ "lib/react-native/*.js",
153
+ "lib/react-native/Touchables.jsx",
154
+ "lib/react/*.js",
155
+ "lib/metro/*.js",
156
+ "lib/util/*.js",
157
+ "react-native.config.js",
158
+ "react-native-dynatrace.js",
159
+ "react-native-dynatrace.podspec",
160
+ "README.md",
161
+ "LICENSE.md",
162
+ "scripts/*",
163
+ "scripts/api/*",
164
+ "scripts/core/*",
165
+ "scripts/api/model/*",
166
+ "scripts/util/*",
167
+ "typings/*",
168
+ "package.json",
169
+ "jsx-runtime.js",
170
+ "jsx-dev-runtime.js",
171
+ "src/lib/instrumentor/base/interface/NativeDynatraceBridge.ts"
172
+ ],
173
+ "codegenConfig": {
174
+ "name": "DynatraceBridgeSpec",
175
+ "type": "modules",
176
+ "jsSrcsDir": "src",
177
+ "android": {
178
+ "javaPackageName": "com.dynatrace.android.agent"
176
179
  }
180
+ }
177
181
  }
@@ -111,7 +111,7 @@ Pod::Spec.new do |s|
111
111
  #
112
112
 
113
113
  s.dependency "React"
114
- s.dependency 'Dynatrace', '~> 8.299.1.1003'
114
+ s.dependency 'Dynatrace', '~> 8.301.1.1008'
115
115
 
116
116
  # Allows for better compatibility for older and newer versions
117
117
  if defined?(install_modules_dependencies)