Usabilla
Usabilla SDK is designed and developed to collect feedback from your users with great ease and flexibility through your mobile application. This document describes library integration steps for your Cordova project.
For more info see Cordova plugin docs
https://github.com/usabilla/usabilla-u4a-cordova
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation
- Capacitor
- Cordova
- Enterprise
$ npm install usabilla-cordova
$ npm install @awesome-cordova-plugins/usabilla-cordova-sdk
$ ionic cap sync
$ ionic cordova plugin add usabilla-cordova
$ npm install @awesome-cordova-plugins/usabilla-cordova-sdk
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
Supported Platforms
- Android
- iOS
Usage
React
Learn more about using Ionic Native components in React
Angular
import { Usabilla } from '@awesome-cordova-plugins/usabilla-cordova-sdk/ngx';
constructor(private usabilla: Usabilla) { }
...
this.usabilla.initialize(
appID: '<your_application_id>',
custom_vars: {
"key": "value"
});
this.usabilla.loadFeedbackForm(
formID : '<your_form_id>'
);