react-native-acoustic-connect-beta 16.0.5 → 16.0.7
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.
- package/Example/nativebase-v3-kitchensink/android/app/build.gradle +102 -81
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/AndroidManifest.xml +1 -2
- package/Example/nativebase-v3-kitchensink/android/app/src/debug/java/com/geekyants/kitchensinkappnativebase/ReactNativeFlipper.java +10 -4
- package/Example/nativebase-v3-kitchensink/android/app/src/main/AndroidManifest.xml +3 -3
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainActivity.java +14 -12
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/MainApplication.java +41 -55
- package/Example/nativebase-v3-kitchensink/android/app/src/main/java/com/geekyants/kitchensinkappnativebase/generated/BasePackageList.java +21 -0
- package/Example/nativebase-v3-kitchensink/android/build.gradle +15 -25
- package/Example/nativebase-v3-kitchensink/android/gradle.properties +20 -3
- package/Example/nativebase-v3-kitchensink/android/settings.gradle +1 -1
- package/Example/nativebase-v3-kitchensink/babel.config.js +7 -1
- package/Example/nativebase-v3-kitchensink/ios/.xcode.env +11 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.h +2 -3
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/AppDelegate.m +10 -69
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Images.xcassets/AppIcon.appiconset/Contents.json +7 -116
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/Info.plist +4 -0
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/project.pbxproj +47 -37
- package/Example/nativebase-v3-kitchensink/ios/Podfile +105 -53
- package/Example/nativebase-v3-kitchensink/ios/Podfile.properties.json +2 -1
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/build-request.json +27 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/description.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/manifest.json +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/target-graph.txt +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/a6b76eb483287825e3d8acec0a94d196.xcbuilddata/task-store.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/build-request.json +27 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/description.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/manifest.json +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/target-graph.txt +1 -0
- package/Example/nativebase-v3-kitchensink/ios/build/XCBuildData/c0fec93a979a5e37e3134ca391db148a.xcbuilddata/task-store.msgpack +0 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +2008 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +2448 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpecJSI-generated.cpp +1523 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/FBReactNativeSpecJSI.h +5509 -0
- package/Example/nativebase-v3-kitchensink/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
- package/Example/nativebase-v3-kitchensink/metro.config.js +12 -14
- package/Example/nativebase-v3-kitchensink/package.json +21 -18
- package/Example/nativebase-v3-kitchensink/src/components/RootComponent.tsx +3 -3
- package/Example/nativebase-v3-kitchensink/src/nb/NativeBase/src/core/NativeBaseProvider.tsx +2 -2
- package/GroovyUtils/psgrep.sh +1 -0
- package/Jenkinsfile +27 -25
- package/android/config.gradle +4 -4
- package/android/src/main/assets/ConnectAdvancedConfig.json +3 -0
- package/android/src/main/assets/TealeafBasicConfig.properties +26 -68
- package/android/src/main/assets/TealeafLayoutConfig.json +1 -26
- package/android/src/main/java/com/tl/uic/rncxa/RNCxaModule.java +127 -100
- package/android/src/main/java/com/tl/uic/rncxa/RNCxaPackage.java +7 -3
- package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec-generated.mm +0 -0
- package/ios/build/generated/ios/FBReactNativeSpec/FBReactNativeSpec.h +0 -0
- package/ios/build/generated/ios/React-Codegen.podspec.json +1 -0
- package/latestChanges +0 -1
- package/package.json +1 -1
- package/Example/nativebase-v3-kitchensink/android/app/BUCK +0 -55
- package/Example/nativebase-v3-kitchensink/android/app/build_defs.bzl +0 -19
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase/noop-file.swift +0 -4
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcodeproj/project.pbxproj +0 -543
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcodeproj/xcshareddata/xcschemes/KitchenSinkappnativebase.xcscheme +0 -100
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebase.xcworkspace/contents.xcworkspacedata +0 -13
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebaseDebugSDK.xcworkspace/contents.xcworkspacedata +0 -10
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/KitchenSinkappnativebaseDebugSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/Example/nativebase-v3-kitchensink/iosSDKDebug/Podfile +0 -51
- package/Example/nativebase-v3-kitchensink/node/.expo/README.md +0 -17
- package/Example/nativebase-v3-kitchensink/node/.expo/settings.json +0 -8
- package/Example/nativebase-v3-kitchensink/yarn.lock +0 -13679
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"React-Codegen","version":"0.72.10","summary":"Temp pod for generated files for React Native","homepage":"https://facebook.com/","license":"Unlicense","authors":"Facebook","compiler_flags":"-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -Wno-nullability-completeness -std=c++17","source":{"git":""},"header_mappings_dir":"./","platforms":{"ios":"12.4"},"source_files":"**/*.{h,mm,cpp}","pod_target_xcconfig":{"HEADER_SEARCH_PATHS":"\"$(PODS_ROOT)/boost\" \"$(PODS_ROOT)/RCT-Folly\" \"${PODS_ROOT}/Headers/Public/React-Codegen/react/renderer/components\" \"$(PODS_ROOT)/Headers/Private/React-Fabric\" \"$(PODS_ROOT)/Headers/Private/React-RCTFabric\"","FRAMEWORK_SEARCH_PATHS":[]},"dependencies":{"React-jsiexecutor":[],"RCT-Folly":[],"RCTRequired":[],"RCTTypeSafety":[],"React-Core":[],"React-jsi":[],"ReactCommon/turbomodule/bridging":[],"ReactCommon/turbomodule/core":[],"React-NativeModulesApple":[],"glog":[],"DoubleConversion":[],"hermes-engine":[],"React-rncore":[],"FBReactNativeSpec":[]}}
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
},
|
|
14
|
-
};
|
|
1
|
+
const { getDefaultConfig } = require('expo/metro-config');
|
|
2
|
+
const { mergeConfig } = require('@react-native/metro-config');
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Metro configuration
|
|
6
|
+
* https://facebook.github.io/metro/docs/configuration
|
|
7
|
+
*
|
|
8
|
+
* @type {import('metro-config').MetroConfig}
|
|
9
|
+
*/
|
|
10
|
+
const config = {};
|
|
11
|
+
|
|
12
|
+
module.exports = mergeConfig(getDefaultConfig(__dirname), config);
|
|
@@ -4,25 +4,26 @@
|
|
|
4
4
|
"@react-native-community/masked-view": "0.1.10",
|
|
5
5
|
"@react-navigation/native": "^5.9.4",
|
|
6
6
|
"@react-navigation/stack": "^5.14.5",
|
|
7
|
-
"expo": "~
|
|
8
|
-
"expo-keep-awake": "~
|
|
9
|
-
"expo-linear-gradient": "~12.0
|
|
10
|
-
"expo-modules-core": "~1.
|
|
11
|
-
"expo-splash-screen": "~0.
|
|
12
|
-
"expo-status-bar": "~1.
|
|
7
|
+
"expo": "~49.0.23",
|
|
8
|
+
"expo-keep-awake": "~12.3.0",
|
|
9
|
+
"expo-linear-gradient": "~12.3.0",
|
|
10
|
+
"expo-modules-core": "~1.5.12",
|
|
11
|
+
"expo-splash-screen": "~0.20.5",
|
|
12
|
+
"expo-status-bar": "~1.6.0",
|
|
13
13
|
"fs-extra": "^10.0.0",
|
|
14
14
|
"native-base": "3.4.0-rc.12",
|
|
15
15
|
"react": "18.2.0",
|
|
16
|
-
"react-dom": "18.
|
|
17
|
-
"react-native": "0.72.
|
|
18
|
-
"react-native-acoustic-connect-beta": "16.0.
|
|
19
|
-
"react-native-gesture-handler": "~2.
|
|
16
|
+
"react-dom": "18.2.0",
|
|
17
|
+
"react-native": "0.72.10",
|
|
18
|
+
"react-native-acoustic-connect-beta": "16.0.6",
|
|
19
|
+
"react-native-gesture-handler": "~2.12.0",
|
|
20
20
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
21
|
-
"react-native-reanimated": "~
|
|
22
|
-
"react-native-safe-area-context": "4.
|
|
23
|
-
"react-native-screens": "~3.
|
|
24
|
-
"react-native-svg": "13.
|
|
25
|
-
"react-native-
|
|
21
|
+
"react-native-reanimated": "~3.3.0",
|
|
22
|
+
"react-native-safe-area-context": "4.6.3",
|
|
23
|
+
"react-native-screens": "~3.22.0",
|
|
24
|
+
"react-native-svg": "13.9.0",
|
|
25
|
+
"react-native-svg-transformer": "1.1.0",
|
|
26
|
+
"react-native-web": "~0.19.6",
|
|
26
27
|
"shelljs": "^0.8.5",
|
|
27
28
|
"styled-components": "^5.3.0",
|
|
28
29
|
"styled-system": "^5.1.5"
|
|
@@ -31,19 +32,21 @@
|
|
|
31
32
|
"@babel/core": "^7.20.0",
|
|
32
33
|
"@babel/preset-env": "^7.20.0",
|
|
33
34
|
"@babel/runtime": "^7.20.0",
|
|
35
|
+
"@react-native-community/cli": "^15.1.0",
|
|
34
36
|
"@react-native/eslint-config": "^0.72.2",
|
|
37
|
+
"@react-native/js-polyfills": "^0.76.1",
|
|
35
38
|
"@react-native/metro-config": "^0.72.11",
|
|
36
39
|
"@tsconfig/react-native": "^3.0.0",
|
|
37
|
-
"@types/react": "
|
|
40
|
+
"@types/react": "~18.2.14",
|
|
38
41
|
"@types/react-native": "~0.63.2",
|
|
39
42
|
"@types/react-test-renderer": "^18.0.0",
|
|
40
43
|
"babel-jest": "^29.2.1",
|
|
41
44
|
"eslint": "^8.19.0",
|
|
42
45
|
"jest": "^29.2.1",
|
|
43
|
-
"jest-expo": "
|
|
46
|
+
"jest-expo": "~49.0.0",
|
|
44
47
|
"metro-react-native-babel-preset": "0.76.8",
|
|
45
48
|
"prettier": "^2.4.1",
|
|
46
|
-
"typescript": "
|
|
49
|
+
"typescript": "^5.1.3"
|
|
47
50
|
},
|
|
48
51
|
"jest": {
|
|
49
52
|
"preset": "jest-expo"
|
|
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
|
|
2
2
|
import { NavigationContainer } from '@react-navigation/native';
|
|
3
3
|
import { Box, useColorModeValue, useToken } from 'native-base';
|
|
4
4
|
import { RootStack } from '../../src/navigators/rootNavigator';
|
|
5
|
-
import { Connect, ConnectProfiler } from 'react-native-acoustic-connect-beta';
|
|
5
|
+
// import { Connect, ConnectProfiler } from 'react-native-acoustic-connect-beta';
|
|
6
6
|
import { useRef } from 'react';
|
|
7
7
|
|
|
8
8
|
export const Root = () => {
|
|
@@ -14,7 +14,7 @@ export const Root = () => {
|
|
|
14
14
|
);
|
|
15
15
|
const bgColor = useColorModeValue(lightBg, darkBg);
|
|
16
16
|
return (
|
|
17
|
-
<Connect>
|
|
17
|
+
// <Connect>
|
|
18
18
|
<NavigationContainer
|
|
19
19
|
ref={navigationRef}
|
|
20
20
|
theme={{
|
|
@@ -37,6 +37,6 @@ export const Root = () => {
|
|
|
37
37
|
<RootStack />
|
|
38
38
|
</Box>
|
|
39
39
|
</NavigationContainer>
|
|
40
|
-
</Connect>
|
|
40
|
+
// </Connect>
|
|
41
41
|
);
|
|
42
42
|
};
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
Metrics,
|
|
5
5
|
initialWindowMetrics as defaultInitialWindowMetrics,
|
|
6
6
|
} from 'react-native-safe-area-context';
|
|
7
|
-
import { SSRProvider } from '@react-native-aria/utils';
|
|
7
|
+
// import { SSRProvider } from '@react-native-aria/utils';
|
|
8
8
|
import { theme as defaultTheme, ITheme } from './../theme';
|
|
9
9
|
import type { IColorModeProviderProps } from './color-mode';
|
|
10
10
|
import HybridProvider from './hybrid-overlay/HybridProvider';
|
|
@@ -94,7 +94,7 @@ const NativeBaseProvider = (props: NativeBaseProviderProps) => {
|
|
|
94
94
|
<OverlayProvider>
|
|
95
95
|
<ToastProvider>
|
|
96
96
|
<InitializeToastRef />
|
|
97
|
-
<SSRProvider>{children}</SSRProvider>
|
|
97
|
+
{/* <SSRProvider>{children}</SSRProvider> */}
|
|
98
98
|
</ToastProvider>
|
|
99
99
|
</OverlayProvider>
|
|
100
100
|
</HybridProvider>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
adb shell ps | grep $1 || [ $? -eq 1 ]
|
package/Jenkinsfile
CHANGED
|
@@ -31,7 +31,7 @@ pipeline {
|
|
|
31
31
|
setupGlobals("${env.GIT_BRANCH}")
|
|
32
32
|
if (genBuild) {
|
|
33
33
|
checkoutRepos()
|
|
34
|
-
|
|
34
|
+
setupEmulator("A_34_RN")
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -46,18 +46,18 @@ pipeline {
|
|
|
46
46
|
// }
|
|
47
47
|
// }
|
|
48
48
|
// Issue starting simulator
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
49
|
+
stage('Build iOS - yarn ios') {
|
|
50
|
+
when { anyOf { branch 'feature/*'; branch 'develop'; branch 'master' } }
|
|
51
|
+
steps {
|
|
52
|
+
echo 'Building..'
|
|
53
|
+
script{
|
|
54
|
+
echo "run using react native"
|
|
55
|
+
runCMD("cd ${testAppDir} && yarn")
|
|
56
|
+
runCMD("cd ${testAppDir} && yarn ios")
|
|
57
|
+
runCMD("killall node")
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
61
|
// stage('Build Android - gradle') {
|
|
62
62
|
// when { anyOf { branch 'feature/*'; branch 'develop'; branch 'master' } }
|
|
63
63
|
// steps {
|
|
@@ -68,17 +68,19 @@ pipeline {
|
|
|
68
68
|
// // }
|
|
69
69
|
// }
|
|
70
70
|
// }
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
71
|
+
stage('Build Android - react native cmd') {
|
|
72
|
+
when { anyOf { branch 'feature/*'; branch 'develop'; branch 'master' } }
|
|
73
|
+
steps {
|
|
74
|
+
echo 'Building..'
|
|
75
|
+
script{
|
|
76
|
+
checkEmulatorReady()
|
|
77
|
+
echo "run using react native"
|
|
78
|
+
runCMD("cd ${testAppDir} && yarn")
|
|
79
|
+
runCMD("cd ${testAppDir} && yarn android")
|
|
80
|
+
runCMD("killall node")
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
82
84
|
stage('Test') {
|
|
83
85
|
when { anyOf { branch 'feature/*'; branch 'develop'; branch 'master' } }
|
|
84
86
|
steps {
|
|
@@ -362,7 +364,7 @@ def checkEmulatorReady() {
|
|
|
362
364
|
}
|
|
363
365
|
|
|
364
366
|
counter = 0
|
|
365
|
-
while (!sh(script: "sh
|
|
367
|
+
while (!sh(script: "sh GroovyUtils/psgrep.sh testapp", returnStdout: true).trim().isEmpty()) {
|
|
366
368
|
if (counter == 0) {
|
|
367
369
|
echo "Waiting for previous tests to finish..."
|
|
368
370
|
}
|
package/android/config.gradle
CHANGED
|
@@ -18,7 +18,7 @@ println("Executing config.gradle")
|
|
|
18
18
|
|
|
19
19
|
def writeConfig(json) {
|
|
20
20
|
def module_path = project(':react-native-acoustic-connect-beta').projectDir.getPath()
|
|
21
|
-
def propertiesFile = "$module_path/src/main/assets/
|
|
21
|
+
def propertiesFile = "$module_path/src/main/assets/TealeafBasicConfig.properties"
|
|
22
22
|
|
|
23
23
|
println("Writing config to file $propertiesFile")
|
|
24
24
|
|
|
@@ -30,7 +30,7 @@ def writeConfig(json) {
|
|
|
30
30
|
FileOutputStream out = new FileOutputStream(propertiesFile);
|
|
31
31
|
|
|
32
32
|
json.each { key, value ->
|
|
33
|
-
if(key != "
|
|
33
|
+
if(key != "Tealeaf"){ return }
|
|
34
34
|
|
|
35
35
|
value.each { config_key, config_value ->
|
|
36
36
|
if(config_value.getClass() != java.lang.String
|
|
@@ -58,8 +58,8 @@ def getConfigJSON() {
|
|
|
58
58
|
def overrideLayoutConfig(){
|
|
59
59
|
def configFilePath = "$project.rootDir/../ConnectConfig.json"
|
|
60
60
|
def module_path = project(':react-native-acoustic-connect-beta').projectDir.getPath()
|
|
61
|
-
def layoutConfigPath = "$module_path/src/main/assets/
|
|
62
|
-
def layoutConfigDefaultPath = "$module_path/src/main/assets/
|
|
61
|
+
def layoutConfigPath = "$module_path/src/main/assets/TealeafLayoutConfig.json"
|
|
62
|
+
def layoutConfigDefaultPath = "$module_path/src/main/assets/TealeafLayoutConfigDefault.json"
|
|
63
63
|
|
|
64
64
|
def configFile = new File(configFilePath)
|
|
65
65
|
|
|
@@ -1,77 +1,35 @@
|
|
|
1
|
-
|
|
2
|
-
# Copyright (C) 2024 Acoustic, L.P. All rights reserved.
|
|
3
|
-
#
|
|
4
|
-
# NOTICE: This file contains material that is confidential and proprietary to
|
|
5
|
-
# Acoustic, L.P. and/or other developers. No license is granted under any intellectual or
|
|
6
|
-
# industrial property rights of Acoustic, L.P. except as may be provided in an agreement with
|
|
7
|
-
# Acoustic, L.P. Any unauthorized copying or distribution of content from this file is
|
|
8
|
-
# prohibited.
|
|
9
|
-
#--------------------------------------------------------------------------------------------
|
|
10
|
-
|
|
11
|
-
#Kill switch settings
|
|
12
|
-
KillSwitchEnabled=true
|
|
13
|
-
#if KillSwitchEnabled=true, then fill the section of the settings below
|
|
14
|
-
KillSwitchUrl=https://lib-us-2.brilliantcollector.com/collector/switch/fa47722a7fef4bcd8677fd8d6d113a0d
|
|
15
|
-
|
|
16
|
-
#Post settings
|
|
17
|
-
PostMessageUrl=https://lib-us-2.brilliantcollector.com/collector/collectorPost
|
|
18
|
-
#Saas Integration
|
|
1
|
+
#Thu Nov 07 20:00:11 PST 2024
|
|
19
2
|
AppKey=fa47722a7fef4bcd8677fd8d6d113a0d
|
|
20
|
-
|
|
21
|
-
#Should have at least 1
|
|
22
|
-
KillSwitchMaxNumberOfTries=3
|
|
23
|
-
#The time to wait before checking the kill switch URL if it is not responding
|
|
24
|
-
KillSwitchTimeInterval=5
|
|
25
|
-
UseWhiteList=true
|
|
26
|
-
WhiteListParam=id
|
|
27
|
-
UseRandomSample=false
|
|
28
|
-
RandomSampleParam=
|
|
29
|
-
|
|
30
|
-
PrintScreen=3
|
|
3
|
+
CaptureNativeGesturesOnWebview=false
|
|
31
4
|
Connection=3
|
|
32
|
-
MaxStringsLength=300
|
|
33
|
-
|
|
34
|
-
#Sessionization settings
|
|
35
|
-
CookieUrl=http://m.straussandplesser.com
|
|
36
|
-
CookieParam=TLTSID
|
|
37
|
-
CookiePath=/
|
|
38
5
|
CookieDomain=.straussandplesser.com
|
|
39
|
-
#Whether you want to add an expires property on the cookie which will be offset + SessionTimeout value
|
|
40
|
-
#When post is sent, expiration of cookie will be current time + session timeout
|
|
41
6
|
CookieExpires=false
|
|
42
|
-
#Whether you want to create a secure cookie which can only be sent using a https url in PostMessageUrl.
|
|
43
|
-
CookieSecure=false
|
|
44
|
-
#Valid date formats: ASCTIME, RFC1036, RFC1123
|
|
45
7
|
CookieExpiresFormat=ASCTIME
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
8
|
+
CookieParam=TLTSID
|
|
9
|
+
CookiePath=/
|
|
10
|
+
CookieSecure=false
|
|
11
|
+
CookieUrl=http\://m.straussandplesser.com
|
|
12
|
+
DisableAutoInstrumentation=true
|
|
13
|
+
GetImageDataOnScreenLayout=false
|
|
14
|
+
KillSwitchEnabled=true
|
|
15
|
+
KillSwitchMaxNumberOfTries=3
|
|
16
|
+
KillSwitchTimeInterval=5
|
|
17
|
+
KillSwitchUrl=https\://lib-us-2.brilliantcollector.com/collector/switch/fa47722a7fef4bcd8677fd8d6d113a0d
|
|
18
|
+
LogLocationEnabled=true
|
|
19
|
+
LogLocationTimeout=30
|
|
20
|
+
LogLocationTries=3
|
|
21
|
+
LogViewLayoutOnScreenTransition=true
|
|
22
|
+
MaxStringsLength=300
|
|
55
23
|
PercentOfScreenshotsSize=40
|
|
56
|
-
# Percentage to compress image which can only be done for jpg images. PNG will ignore and default to 100.
|
|
57
24
|
PercentToCompressImage=80
|
|
58
|
-
|
|
25
|
+
PostMessageUrl=https\://lib-us-2.brilliantcollector.com/collector/collectorPost
|
|
26
|
+
PrintScreen=3
|
|
27
|
+
RandomSampleParam=
|
|
59
28
|
ScreenShotPixelDensity=1.5
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
# Current only done on ImageView
|
|
64
|
-
GetImageDataOnScreenLayout=false
|
|
65
|
-
|
|
66
|
-
#Gesture enabled or not
|
|
29
|
+
ScreenshotFormat=JPG
|
|
30
|
+
SessionTimeout=30
|
|
31
|
+
SessionTimeoutKillSwitch=false
|
|
67
32
|
SetGestureDetector=true
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
LogLocationEnabled=true
|
|
72
|
-
LogLocationTries=3
|
|
73
|
-
LogLocationTimeout=30
|
|
74
|
-
|
|
75
|
-
#Auto Instrumentation
|
|
76
|
-
# You need to have TeaCuts.jar installed and set below to false to enable
|
|
77
|
-
DisableAutoInstrumentation=true
|
|
33
|
+
UseRandomSample=false
|
|
34
|
+
UseWhiteList=true
|
|
35
|
+
WhiteListParam=id
|
|
@@ -1,26 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"AutoLayout": {
|
|
3
|
-
"GlobalScreenSettings":{
|
|
4
|
-
"ScreenChange": true,
|
|
5
|
-
"DisplayName": "MainActivity",
|
|
6
|
-
"CaptureLayoutDelay": 500,
|
|
7
|
-
"ScreenShot": true,
|
|
8
|
-
"NumberOfWebViews": 0,
|
|
9
|
-
"CaptureUserEvents": true,
|
|
10
|
-
"CaptureScreenVisits": false,
|
|
11
|
-
"CaptureLayoutOn": 0,
|
|
12
|
-
"CaptureScreenshotOn": 0
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"AppendMapIds": {
|
|
16
|
-
"[w,9290],[v,0]": {
|
|
17
|
-
"mid": "ASimpleUIView"
|
|
18
|
-
},
|
|
19
|
-
"tag2999999": {
|
|
20
|
-
"mid": "giveAdditionalId1"
|
|
21
|
-
},
|
|
22
|
-
"idxPathValue": {
|
|
23
|
-
"mid": "giveAdditionalId2"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
1
|
+
{"AutoLayout":{"GlobalScreenSettings":{"ScreenChange":true,"DisplayName":"Example","CaptureLayoutDelay":500,"ScreenShot":true,"NumberOfWebViews":0,"CaptureUserEvents":true,"CaptureScreenVisits":false,"CaptureLayoutOn":2,"CaptureScreenshotOn":2,"Masking":{"HasMasking":true,"HasCustomMask":true,"Sensitive":{"capitalCaseAlphabet":"X","number":"9","smallCaseAlphabet":"x","symbol":"#"},"MaskIdList":[],"MaskValueList":[]}}},"MainActivity":{"ScreenChange":true,"DisplayName":"LoginActivity","CaptureLayoutOn":2,"Masking":{"HasMasking":true,"HasCustomMask":true,"Sensitive":{"capitalCaseAlphabet":"X","number":"9","smallCaseAlphabet":"x","symbol":"#"},"MaskIdList":["password"],"MaskValueList":[],"MaskAccessibilityIdList":[],"MaskAccessibilityLabelList":["Masking","Test Masking","password"]}},"Button":{"ScreenChange":true,"DisplayName":"Visible","CaptureLayoutDelay":500,"ScreenShot":true,"NumberOfWebViews":0,"CaptureUserEvents":true,"CaptureScreenVisits":true,"CaptureLayoutOn":2,"CaptureScreenshotOn":2},"ErrorTest":{"ScreenChange":false,"DisplayName":"Hidden","CaptureLayoutDelay":1,"ScreenShot":false,"NumberOfWebViews":0,"CaptureUserEvents":false,"CaptureScreenVisits":false,"CaptureLayoutOn":0,"CaptureScreenshotOn":0},"AppendMapIds":{"[w,9290],[v,0]":{"mid":"ASimpleUIView"},"tag2999999":{"mid":"giveAdditionalId1"},"idxPathValue":{"mid":"giveAdditionalId2"}}}
|