CAMAA cordova plugin is for App Experience Analytics that provides deep insights into the performance, user experience, crash, and log analytics of apps.
Check out our documentation for more information about the features that the App Experience Analytics SDK collects from your app.
- iOS
- Android
- iOS 8.0 or higher
Follow these steps to integrate the camaa cordova plugin
in your project
- Run the following command from your Cordova project directory
cordova plugin add cordova-plugin-camaa
- Download
xxx_camdo.plist
and rename it tocordova_camdo.plist
. You should replace this with existing file in your project after you installed thecamaa cordova plugin
.
- AXALoader.js contains all of the javascript API calls which trigger the corresponding method in CAMDOReporter.h(however it goes through CAMAAInitializer.m)
- AXALoader.js has a tiny interface which tells you the expected types for the parameters
- For a full description of the function and what it does see CAMDOReporter.h and search for the function name
- access API via window.camaa Ex :
window.camaa.isSDKEnabled((didSucceed)=>{
var result = didSucceed ? "is enabled!" : "is disabled!";
console.log("The SDK " + result); // is enabled or disabled
},(didFail)=>{
// Note for functions there is type checking which should send descriptive error messages on failure
// but for other cases there will not always be a description of the error
console.log("The function failed with description : " + didFail);
});
// If confused It is always best to consult CAMAAInitializer.m
// to see the actual implementation
- Write more Tests
- Add android support
- Make error reporting more descriptive