1.0.4 • Published 6 months ago
nativescript-uxcam v1.0.4
NativeScript UXCam
Installation
tns plugin add nativescript-uxcam
NB: UXCam on iOS needs a minimum version of iOS 12.0
Usage
Setup
import { NSUXCam } from 'nativescript-uxcam';
NSUXCam.optIntoSchematicRecordings();
const blur = {
'type': 3,
'hideGestures': true,
'blurRadius': 20,
'screens': ['Home Screen']
}
var config = {
'userAppKey': '<your-app-key>',
'occlusions': [blur]
}
NSUXCam.startWithConfiguration(config);
Hiding sensitive view
const sensitiveView = page.getViewById("<id-of-sensitive-view>");
NSUXCam.occludeSensitiveView(sensitiveView);
// Angular - replace <elementRefToOcclude> with your element reference after page is loaded
const sensitiveView = this.
<elementRefToOcclude>.nativeElement;
NSUXCam.occludeSensitiveView(sensitiveView);
Event logging
// log event
NSUXCam.logEvent("<Event name>");
// log event with properties
NSUXCam.logEventWithProperties("<Event name>", {
"prop-key": "<prop-value>"
});
Manual Screen Name Tagging
import { HostListener } from "@angular/core";
@HostListener('loaded')
pageOnInit() {
NSUXCam.tagScreenName("<screen-name>");
}
1.0.4
6 months ago
1.0.3
1 year ago
1.0.2
2 years ago
1.0.1
2 years ago
1.0.0
4 years ago
1.0.0-beta.4
4 years ago
1.0.0-beta.3
4 years ago
1.0.0-beta.2
4 years ago
1.0.0-beta.1
4 years ago