react-native-acoustic-connect-beta 16.0.40 → 17.0.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.
@@ -6,7 +6,86 @@
6
6
  "useRelease": false,
7
7
  "iOSVersion": "",
8
8
  "AndroidVersion": "10.4.20",
9
- "layoutConfig": {
9
+ "layoutConfigAndroid": {
10
+ "AutoLayout": {
11
+ "GlobalScreenSettings":{
12
+ "ScreenChange": true,
13
+ "DisplayName": "",
14
+ "CaptureLayoutDelay": 1,
15
+ "ScreenShot": true,
16
+ "NumberOfWebViews": 0,
17
+ "CaptureUserEvents": true,
18
+ "CaptureScreenVisits": false,
19
+ "CaptureLayoutOn": 2,
20
+ "CaptureScreenshotOn": 2,
21
+ "Masking": {
22
+ "HasMasking": true,
23
+ "HasCustomMask": true,
24
+ "Sensitive": {
25
+ "capitalCaseAlphabet": "X",
26
+ "number": "9",
27
+ "smallCaseAlphabet": "x",
28
+ "symbol": "#"
29
+ },
30
+ "MaskIdList": [
31
+ ],
32
+ "MaskValueList": [
33
+ ],
34
+ "MaskAccessibilityIdList": [
35
+ ],
36
+ "MaskAccessibilityLabelList": [
37
+ ]
38
+ }
39
+ },
40
+ "ExampleMaskingPage":{
41
+ "ScreenChange": false,
42
+ "DisplayName": "",
43
+ "CaptureLayoutDelay": 0,
44
+ "ScreenShot": false,
45
+ "NumberOfWebViews": 0,
46
+ "CaptureUserEvents": false,
47
+ "CaptureScreenVisits": false,
48
+ "CaptureLayoutOn": 0,
49
+ "CaptureScreenshotOn": 0,
50
+ "Masking": {
51
+ "HasMasking": true,
52
+ "HasCustomMask": true,
53
+ "Sensitive": {
54
+ "capitalCaseAlphabet": "X",
55
+ "number": "9",
56
+ "smallCaseAlphabet": "x",
57
+ "symbol": "#"
58
+ },
59
+ "MaskIdList": [
60
+ "^9[0-9][0-9][0-9]$",
61
+ "^\\[wvv,0\\],\\[dddv,0\\],\\[v,0\\],\\[v,0\\],\\[v,0\\],\\[b,0\\](.)*$"
62
+ ],
63
+ "MaskValueList": [
64
+ "^4[0-9]{12}(?:[0-9]{3})?$",
65
+ "^3[47][0-9]{13}$",
66
+ "^65[4-9][0-9]{13}|64[4-9][0-9]{13}|6011[0-9]{12}|(622(?:12[6-9]|1[3-9][0-9]|[2-8][0-9][0-9]|9[01][0-9]|92[0-5])[0-9]{10})$",
67
+ "^(5[1-5][0-9]{14}|2(22[1-9][0-9]{12}|2[3-9][0-9]{13}|[3-6][0-9]{14}|7[0-1][0-9]{13}|720[0-9]{12}))$"
68
+ ],
69
+ "MaskAccessibilityIdList": [
70
+ ],
71
+ "MaskAccessibilityLabelList": [
72
+ ]
73
+ }
74
+ }
75
+ },
76
+ "AppendMapIds": {
77
+ "[w,9290],[v,0]": {
78
+ "mid": "ASimpleUIView"
79
+ },
80
+ "tag2999999": {
81
+ "mid": "giveAdditionalId1"
82
+ },
83
+ "idxPathValue": {
84
+ "mid": "giveAdditionalId2"
85
+ }
86
+ }
87
+ },
88
+ "layoutConfigIos": {
10
89
  "AutoLayout": {
11
90
  "GlobalScreenSettings":{
12
91
  "ScreenChange": true,
@@ -99,6 +99,11 @@
99
99
  value = "1"
100
100
  isEnabled = "YES">
101
101
  </EnvironmentVariable>
102
+ <EnvironmentVariable
103
+ key = "CONNECT_DEBUG"
104
+ value = "1"
105
+ isEnabled = "YES">
106
+ </EnvironmentVariable>
102
107
  </EnvironmentVariables>
103
108
  </LaunchAction>
104
109
  <ProfileAction
@@ -15,7 +15,7 @@
15
15
  "react": "18.2.0",
16
16
  "react-dom": "18.2.0",
17
17
  "react-native": "0.72.10",
18
- "react-native-acoustic-connect-beta": "16.0.40",
18
+ "react-native-acoustic-connect-beta": "17.0.2",
19
19
  "react-native-gesture-handler": "~2.12.0",
20
20
  "react-native-keyboard-aware-scroll-view": "^0.9.5",
21
21
  "react-native-reanimated": "~3.3.0",
package/Jenkinsfile CHANGED
@@ -583,8 +583,9 @@ def gitPush(path, commitMsg, tagMsg, branch, commitMsg2) {
583
583
  }
584
584
 
585
585
  // "Update files for beta"
586
- def updateDescription() {
587
- def commitDesciptionTitle = "Beta ${name} Change Notes:"
586
+ def updateDescription(isBeta) {
587
+ def title = isBeta ? "Beta" : "Release"
588
+ def commitDesciptionTitle = "${title} ${name} Change Notes:"
588
589
  commitDesciption = readFile "latestChanges"
589
590
  commitDesciption = "${commitDesciptionTitle} \n" << commitDesciption
590
591
  commitDesciption = commitDesciption.replaceAll("\"", "\'")
@@ -598,7 +599,7 @@ def publishBeta() {
598
599
  runCMD('''cd \"''' + buildDir + '''\" && npm publish''')
599
600
  }
600
601
 
601
- updateDescription()
602
+ updateDescription(true)
602
603
  def commitMsg = "Beta ${name} build: ${currentVersion}"
603
604
  echo "push with:"
604
605
  echo commitMsg
@@ -649,7 +650,7 @@ def publishRelease() {
649
650
  runCMD('''cd \"''' + releaseDir + '''\" && npm publish''')
650
651
  }
651
652
 
652
- updateDescription()
653
+ updateDescription(false)
653
654
  def commitMsg = "Release ${name} build: ${currentVersion}"
654
655
  echo "push with:"
655
656
  echo commitMsg
@@ -1,5 +1,5 @@
1
1
  /********************************************************************************************
2
- * Copyright (C) 2024 Acoustic, L.P. All rights reserved.
2
+ * Copyright (C) 2025 Acoustic, L.P. All rights reserved.
3
3
  *
4
4
  * NOTICE: This file contains material that is confidential and proprietary to
5
5
  * Acoustic, L.P. and/or other developers. No license is granted under any intellectual or
@@ -88,9 +88,16 @@ def updateTealeafBasicConfig(mp, json) {
88
88
  def updateLayoutConfig(mp, json){
89
89
  def layoutConfigPath = "$mp/src/main/assets/TealeafLayoutConfig.json"
90
90
  def layoutConfigDefaultPath = "$mp/src/main/assets/TealeafLayoutConfigDefault.json"
91
- def override = json.Connect.layoutConfig;
91
+
92
+ println(layoutConfigPath)
93
+ println(layoutConfigDefaultPath)
94
+
95
+ def override = json.Connect.layoutConfig != null ? json.Connect.layoutConfig : json.Connect.layoutConfigAndroid;
92
96
  def overrideJson = JsonOutput.toJson(override)
93
97
 
98
+ // def jsonSlurper = new JsonSlurper()
99
+ // def tealeafAdvConfigData = jsonSlurper.parse(new File(tealeafAdvConfigPath))
100
+
94
101
  if(override != null){
95
102
  def layoutConfigFile = new File(layoutConfigPath)
96
103
  layoutConfigFile.text = overrideJson
@@ -1,3 +1,42 @@
1
1
  {
2
- "LibraryVersion": "10.4.20"
2
+ "AddMessageTypeHeader": false,
3
+ "ClickEventEnabled": false,
4
+ "ColorAccent": "#FF4081",
5
+ "ColorPrimary": "#3F51B5",
6
+ "ColorPrimaryDark": "#303F9F",
7
+ "DefaultAutoLayoutDelay": 0,
8
+ "DefaultTextViewGravity": "left",
9
+ "DefaultTextViewPaddingLeft": 5,
10
+ "DefaultTextViewPaddingRight": 5,
11
+ "EditTextEnabled": true,
12
+ "EnableActivityLifeCycleListener": true,
13
+ "EnableFragmentLifeCycleListener": true,
14
+ "EnableGestureSwipeLogScreen": true,
15
+ "EnableScreenshotCache": true,
16
+ "ExcludeTextViewStyleForOS": "",
17
+ "ExtendsGoogleWebViewClient": false,
18
+ "FilterMessageTypes": false,
19
+ "FlushUpdatedPlaceHolders": false,
20
+ "GenerateImageHash": true,
21
+ "GestureConfirmedScreenshotDelay": 0,
22
+ "GoogleWebViewEnabled": true,
23
+ "InitialZIndex": 500,
24
+ "IpPlaceholder": "N/A",
25
+ "KillSwitchAsync": true,
26
+ "KillSwitchDelay": 300,
27
+ "LibraryVersion": "10.4.29",
28
+ "LogFullRequestResponsePayloads": true,
29
+ "MessageTypeHeader": "WorklightHit",
30
+ "MessageTypes": "4,5",
31
+ "NavigationControllerEnabled": false,
32
+ "RemoveAllCookies": false,
33
+ "RemoveIp": false,
34
+ "ScreenViewUnloadDelay": 1000,
35
+ "StripDrawableFolderExt": true,
36
+ "SwitchWidth": 140,
37
+ "TouchEventEnabled": false,
38
+ "UseXpathId": false,
39
+ "UseZindex": false,
40
+ "WebViewDelay": "1000",
41
+ "WebViewSetTagForId": false
3
42
  }
@@ -6,7 +6,7 @@
6
6
  "CompressPostMessage": true,
7
7
  "DefaultOrientation": 0,
8
8
  "DisableCookieManager": false,
9
- "LibraryVersion": "2.1.10",
9
+ "LibraryVersion": "2.1.15",
10
10
  "MNCMCC": {
11
11
  "00": "N/A",
12
12
  "20201": "Cosmote",
@@ -24,7 +24,7 @@
24
24
  "IpPlaceholder": "N/A",
25
25
  "KillSwitchAsync": true,
26
26
  "KillSwitchDelay": 300,
27
- "LibraryVersion": "10.4.6",
27
+ "LibraryVersion": "10.4.10",
28
28
  "LogFullRequestResponsePayloads": true,
29
29
  "MessageTypeHeader": "WorklightHit",
30
30
  "MessageTypes": "4,5",
package/latestChanges CHANGED
@@ -5,13 +5,13 @@ Bug Fixes
5
5
 
6
6
  Improvements:
7
7
 
8
- - None.
8
+ - Add section for Android and iOS for layout configuration.
9
9
 
10
10
 
11
11
  Our environment for this release:
12
12
 
13
- - Xcode 16.1
14
- - MacOS 15.0.1
13
+ - Xcode 16.3
14
+ - MacOS 15.3.1
15
15
  - iOS 13.x to 18.x
16
16
  - Supported architectures:
17
17
  - simulator
package/package.json CHANGED
@@ -40,5 +40,5 @@
40
40
  "verifyConnectSetup": "node scripts/verifyConnectSetup.js $INIT_CWD"
41
41
  },
42
42
  "summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
43
- "version": "16.0.40"
43
+ "version": "17.0.2"
44
44
  }
@@ -1,11 +1,96 @@
1
1
  {
2
2
  "Connect": {
3
- "AndroidVersion": "10.4.20",
3
+ "AndroidVersion": "10.4.29",
4
4
  "AppKey": "b6c3709b7a4c479bb4b5a9fb8fec324c",
5
5
  "KillSwitchUrl": "https://lib-us-2.brilliantcollector.com/collector/switch/b6c3709b7a4c479bb4b5a9fb8fec324c",
6
6
  "PostMessageUrl": "https://lib-us-2.brilliantcollector.com/collector/collectorPost",
7
7
  "iOSVersion": "",
8
- "layoutConfig": {
8
+ "layoutConfigAndroid": {
9
+ "AppendMapIds": {
10
+ "[w,9290],[v,0]": {
11
+ "mid": "ASimpleUIView"
12
+ },
13
+ "idxPathValue": {
14
+ "mid": "giveAdditionalId2"
15
+ },
16
+ "tag2999999": {
17
+ "mid": "giveAdditionalId1"
18
+ }
19
+ },
20
+ "AutoLayout": {
21
+ "ExampleMaskingPage": {
22
+ "CaptureLayoutDelay": 0,
23
+ "CaptureLayoutOn": 0,
24
+ "CaptureScreenVisits": false,
25
+ "CaptureScreenshotOn": 0,
26
+ "CaptureUserEvents": false,
27
+ "DisplayName": "",
28
+ "Masking": {
29
+ "HasCustomMask": true,
30
+ "HasMasking": true,
31
+ "MaskAccessibilityIdList": [
32
+
33
+ ],
34
+ "MaskAccessibilityLabelList": [
35
+
36
+ ],
37
+ "MaskIdList": [
38
+ "^9[0-9][0-9][0-9]$",
39
+ "^\\[wvv,0\\],\\[dddv,0\\],\\[v,0\\],\\[v,0\\],\\[v,0\\],\\[b,0\\](.)*$"
40
+ ],
41
+ "MaskValueList": [
42
+ "^4[0-9]{12}(?:[0-9]{3})?$",
43
+ "^3[47][0-9]{13}$",
44
+ "^65[4-9][0-9]{13}|64[4-9][0-9]{13}|6011[0-9]{12}|(622(?:12[6-9]|1[3-9][0-9]|[2-8][0-9][0-9]|9[01][0-9]|92[0-5])[0-9]{10})$",
45
+ "^(5[1-5][0-9]{14}|2(22[1-9][0-9]{12}|2[3-9][0-9]{13}|[3-6][0-9]{14}|7[0-1][0-9]{13}|720[0-9]{12}))$"
46
+ ],
47
+ "Sensitive": {
48
+ "capitalCaseAlphabet": "X",
49
+ "number": "9",
50
+ "smallCaseAlphabet": "x",
51
+ "symbol": "#"
52
+ }
53
+ },
54
+ "NumberOfWebViews": 0,
55
+ "ScreenChange": false,
56
+ "ScreenShot": false
57
+ },
58
+ "GlobalScreenSettings": {
59
+ "CaptureLayoutDelay": 1,
60
+ "CaptureLayoutOn": 2,
61
+ "CaptureScreenVisits": false,
62
+ "CaptureScreenshotOn": 2,
63
+ "CaptureUserEvents": true,
64
+ "DisplayName": "",
65
+ "Masking": {
66
+ "HasCustomMask": true,
67
+ "HasMasking": true,
68
+ "MaskAccessibilityIdList": [
69
+
70
+ ],
71
+ "MaskAccessibilityLabelList": [
72
+
73
+ ],
74
+ "MaskIdList": [
75
+
76
+ ],
77
+ "MaskValueList": [
78
+
79
+ ],
80
+ "Sensitive": {
81
+ "capitalCaseAlphabet": "X",
82
+ "number": "9",
83
+ "smallCaseAlphabet": "x",
84
+ "symbol": "#"
85
+ }
86
+ },
87
+ "NumberOfWebViews": 0,
88
+ "ScreenChange": true,
89
+ "ScreenShot": true
90
+ }
91
+ }
92
+ },
93
+ "layoutConfigIos": {
9
94
  "AppendMapIds": {
10
95
  "[w,9290],[v,0]": {
11
96
  "mid": "ASimpleUIView"
@@ -1,4 +1,6 @@
1
1
  echo "**Acoustic Integration***********************************************************************"
2
+ echo "what is the current directory?"
3
+ pwd
2
4
  node ./scripts/reviewConnectConfig.js
3
5
  node ./scripts/javaParser.js
4
6
  node ./scripts/xmlParser.js