Skip to main content
Version: v5

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

github.com/usabilla/usabilla-u4a-cordova

Stuck on a Cordova issue?

Don't waste precious time on plugin issues.

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

$ npm install usabilla-cordova $ npm install @awesome-cordova-plugins/usabilla-cordova-sdk $ ionic cap sync

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>'
);