This repository is no longer being maintained.
This plugin is a bridge between Cordova and Fidel's native iOS and Android SDKs. It helps you to add card linking technology to your Cordova apps in minutes. It captures credit/debit card numbers securely and links them to your programs.
$ cordova plugin add cordova-plugin-fidel
1. Add iOS as a platform to your Cordova project:
$ cordova platform add ios
1. Add Android as a platform to your Cordova project:
$ cordova platform add android
2. Append Jitpack to platforms/android/build.gradle
:
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
3. Make sure that the minSdkVersion
is the same or higher than the minSdkVersion
of our native Android SDK:
buildscript {
ext {
...
minSdkVersion = 19
...
}
}
4. Our plugin contains native automated tests to ensure the quality of the plugin. To accomodate these tests, the plugin structure is a bit different than that of most plugins. Therefore, an extra step is needed after the plugin is installed:
4.1 If your Android package name does NOT contain .com
Go to platforms/android/app/src/main/java/android/src/main/java
and copy the com
folder and its content to platforms/android/app/src/main/java/
, then delete the platforms/android/app/src/main/java/android/
folder.
4.2 If your Android package name contains .com
Go to platforms/android/app/src/main/java/android/src/main/java/com
and copy the fidelcordovalibrary
folder and its content to platforms/android/app/src/main/java/com
, then delete the platforms/android/app/src/main/java/android/
folder.
For projects using cordova-android 9.0.0 or later
In order for the project to run, open the project's config.xml
file and set the AndroidXEnabled
preference to true
:
<platform name="android">
<preference name="AndroidXEnabled" value="true" />
</platform>
All Fidel functions are accesible via the window.plugins.fidelfunctions
prefix.
There are 3 main steps to follow when setting up the plugin:
- Set up Fidel with your API key and your program ID. Without them you can't open the Fidel card linking UI:
window.plugins.fidelfunctions.setup(
function (success) {
console.log(success);
}, //success callback
function (error) {
console.log(error);
}, //error callback
{
apiKey: "your API key",
programId: "your program ID",
}
);
- Set the options that create the experience of linking a card with Fidel:
//this is the default value for supported card schemes,
//but you can remove the support for some of the card schemes if you want to
const cardSchemes = new Set([
Fidel.CardScheme.visa,
Fidel.CardScheme.mastercard,
Fidel.CardScheme.americanExpress,
]);
const countries = [Fidel.Country.ireland, Fidel.Country.unitedStates];
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
}, //success callback
function (error) {
console.log(error);
}, //error callback
{
bannerImageName: "your-image-name", //e.g. "fidel-banner"
supportedCardSchemes: Array.from(cardSchemes),
allowedCountries: countries,
autoScan: false,
companyName: "My Company", // the company name displayed in the checkbox text
deleteInstructions: "Your custom delete instructions!",
privacyUrl: "https://fidel.uk",
termsConditionsUrl: "https://fidel.uk/privacy", // mandatory when you include USA/Canada in the list of allowed countries or when the user can select USA/Canada from the country selection UI
programName: "My program name", // optional, is used when you include USA/Canada in the list of allowed countries or when the user can select USA/Canada from the country selection UI
metaData: { "my-custom-key": "my-custom-value" }, // additional data to pass with the card
}
);
- Open the card linking view by calling:
window.plugins.fidelfunctions.openForm(
function (success) {
console.log(success);
}, // optional success callback
function (error) {
console.log(error);
} // optional error callback
);
Both success
and error
are objects that look like in the following examples:
{
accountId: "the-account-id"
countryCode: "GBR" // the country selected by the user, in the Fidel SDK form
created: "2019-04-22T05:26:45.611Z"
expDate: "2023-12-31T23:59:59.999Z" // the card expiration date
expMonth: 12 // for your convenience, this is the card expiration month
expYear: 2023 // for your convenience, this is the card expiration year
id: "card-id" // the card ID as registered on the Fidel platform
lastNumbers: "4001" // last numbers of the card
firstNumbers: "444400" // first numbers of the card, if made available
live: false
mapped: false
metaData: {meta-data-1: "value1"} //the meta data that you specified for the Fidel SDK
programId: "your program ID, as specified for the Fidel SDK"
scheme: "visa"
type: "visa"
updated: "2019-04-22T05:26:45.611Z"
}
{
code: "item-save"; // the code of the error
date: "2019-04-22T05:34:04.621Z"; // the date of the card link request
message: "Item already exists"; // the message of the error
}
Use this option to customize the topmost banner image with the Fidel UI. In order to do so, you must add to the Android/iOS project of your Cordova application the image that you want to be displayed. Note that the value of bannerImageName
should not contain the image type (e.g. if your image is fidel-banner.png
, you should set the option as bannerImageName: "fidel-banner"
).
On Android, you must add the image to platforms/android/app/src/main/res/drawable-port-<density>
folders of your project, where <density>
is mdpi
, xhdpi
and xxhdpi
.
On iOS, the easiest way is to add your image via Xcode. Make sure to add 1x
, 2x
and 3x
image resources.
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
bannerImageName: "your-image-name",
}
);
To set the countries that the users can select, use
const countries = [Fidel.Country.ireland, Fidel.Country.unitedStates];
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
allowedCountries: countries,
}
);
The possible options are: .unitedKingdom
, .ireland
, .unitedStates
, .sweden
, .japan
, .canada
. You can set one or multiple of these countries. If you don't set any allowed countries, the user will be able to choose any of the countries above. If you set only one country, the card linking screen will not show the country picker UI. Note that, when you set multiple countries, they will be displayed in the country picker UI in the order that you set them.
We currently support Visa, Mastercard and AmericanExpress, but you can choose to support only one, two or all three. By default the SDK is configured to support all three.
If you set this option to an empty array or to null
, of course, you will not be able to open the Fidel UI. You must support at least one our supported card schemes.
Please check the example below:
const cardSchemes = new Set([
Fidel.CardScheme.visa,
Fidel.CardScheme.mastercard,
Fidel.CardScheme.americanExpress,
]);
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
supportedCardSchemes: Array.from(cardSchemes),
}
);
Set this property to true
, if you want to open the card scanning UI immediately after executing window.plugins.fidelfunctions.openForm
. The default value is false
.
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
autoScan: true,
}
);
Use this option to pass any other data with the card data:
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
metaData: { "my-custom-key": "my-custom-value" },
}
);
Set your company name as it will appear in our consent checkbox text. Please set it to a maximum of 60 characters.
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
companyName: "Your Company Name",
}
);
Write your custom opt-out instructions for your users. They will be displayed in the consent checkbox text as well.
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
deleteInstructions: "Your custom card delete instructions!",
}
);
This is the privacy policy URL that you can set for the consent checkbox text.
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
privacyUrl: "https://fidel.uk",
}
);
Set your program name as it will appear in the consent text. Note that this parameter is optional and used when you set United States or Canada as allowed countries or don't set any allowed countries (meaning that the user is free to select United States or Canada as their country). Please set it to a maximum of 60 characters.
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
programName: "Your Program Name",
}
);
This is the terms & conditions URL that you can set for the consent text. Note that this parameter is mandatory when you set United States or Canada as allowed countries or don't set any allowed countries (meaning that the user is free to select United States or Canada as their country).
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
termsConditionsUrl: "https://fidel.uk",
}
);
In order to properly set the consent text, please follow these steps:
- Set the company name
This parameter is optional, but we recommended setting it. If you don't set a company name, we'll show the default value in the consent text: Your Company Name
- Set the privacy policy URL
This is an optional parameter. It is added as a hyperlink to the privacy policy
text. Please see the full behaviour below.
- Set the delete instructions
Optional parameter whose default value is going to your account settings
. This default value is applied for both consent texts - for the USA & Canada as well as for the rest of the world.
- Set the card scheme name
By default, we allow the user to input card numbers from either Visa, Mastercard or American Express, but you can control which card networks you accept. The consent text changes based on what you define or based on what the user inputs. Please see the full behaviour below.
- Set the program name (applied to the consent text only for USA and Canada)
This parameter is taken into account only for USA and Canada. The default value for program name is our
.
- Set the terms and conditions URL (applied to the consent text only for USA and Canada)
This parameter is mandatory for USA and Canada. Once set, it will be applied as a hyperlink on the Terms and Conditions
text.
Note that the consent text has a different form depending on the allowed countries you set or the country the user can select. Below you can find the specifics for each case.
When you set United States and/or Canada as allowed countries or don't set any countries (meaning that the user is free to select United States or Canada as their country), a different consent text will be applied.
For USA & Canada, the following would be an example Terms & Conditions text for Cashback Inc
(an example company) that uses Awesome Bonus
as their program name:
By submitting your card information and checking this box, you authorize card_scheme_name
to monitor and share transaction data with Fidel (our service provider) to participate in Awesome Bonus
program. You also acknowledge and agree that Fidel may share certain details of your qualifying transactions with Cashback Inc
to enable your participation in Awesome Bonus
program and for other purposes in accordance with the Cashback Inc
Terms and Conditions, Cashback Inc
privacy policy and Fidel’s Privacy Policy. You may opt-out of transaction monitoring on the linked card at any time by deleteInstructions
.
There are two specific parameters that you can set for this consent text:
This parameter is mandatory when you set United States and/or Canada as allowed countries or don't set any countries (meaning that the user is free to select United States or Canada as their country). When you set this parameter, the Terms and Conditions
from the consent text will get a hyperlink with the URL you set.
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
termsConditionsUrl: "https://fidel.uk",
}
);
If you don't set this parameter, you'll get an error when trying to open the card linking interface: You have included a North American country in the list of allowed countries or you allow the user to select a North American country. For North American countries it is mandatory for you to provide the Terms and Conditions URL.
This parameter is optional when you set United States or Canada as allowed countries or don't set any allowed countries. If you don't set a program name, we'll use our
as the default value (for example, in the text above, you would see ...to monitor and share transaction data with Fidel (our service provider) to participate in our
program...)
window.plugins.fidelfunctions.setOptions(
function (success) {
console.log(success);
},
function (error) {
console.log(error);
},
{
programName: "Your Program Name",
}
);
If you don't set a card scheme (meaning the user can input either Visa, Mastercard or American Express cards) OR set 2 or 3 card scheme names, the default value used will be your payment card network
(e.g. you authorize your payment card network
to monitor and share transaction data with Fidel (our service provider)). When the user starts typing in a card number, your payment card network
will be replaced with the scheme name of the card that they typed in (e.g. Visa).
If you set one card scheme name, it will be displayed in the consent text (e.g. for Mastercard it would be you authorize Mastercard
to monitor and share transaction data with Fidel (our service provider)) This value - Mastercard
- will not change when the user starts typing in a card number.
Notice the following excerpt from the consent text above: in accordance with the Cashback Inc
Terms and Conditions, Cashback Inc
privacy policy and Fidel’s Privacy Policy. If you set a privacyUrl
, this is the text that will be displayed, along with a hyperlink set on privacy policy.
If you do not set a privacyUrl
, the text will become in accordance with the Cashback Inc
Terms and Conditions and Fidel’s Privacy Policy.
When you set United Kingdom, Ireland, Japan or Sweden as allowed countries or the user selects one of these countries from the list, a consent text specific for these countries will be applied.
The following would be an example Terms & Conditions text for Cashback Inc
(an example company):
I authorise card_scheme_name
to monitor my payment card to identify transactions that qualify for a reward and for card_scheme_name
to share such information with Cashback Inc
, to enable my card linked offers and target offers that may be of interest to me. For information about Cashback Inc
privacy practices, please see the privacy policy. You may opt-out of transaction monitoring on the payment card you entered at any time by deleteInstructions
.
If you don't set a card scheme (meaning the user can input either Visa, Mastercard or American Express cards) OR set 2 or 3 card scheme names, the default value used will be my card network
(e.g. I authorise my card network
to monitor my payment card). When the user starts typing in a card number, my card network
will be replaced with the scheme name of the card that they typed in (e.g. Visa).
If you set one card scheme name, it will be displayed in the consent text (e.g. for Mastercard it would be I authorise Mastercard
to monitor my payment card) This value - Mastercard
- will not change when the user starts typing in a card number.
If you do not set a privacy policy URL, the privacy policy related phrase will be removed from the text.
Notice the following excerpt from the consent text above: ...may be of interest to me. For information about Cashback Inc
privacy practices, please see the privacy policy. You may opt-out of... If you set a privacyUrl
, this is the text that will be displayed, along with a hyperlink set on privacy policy.
If you do not set a privacyUrl
, the text will become ...may be of interest to me. You may opt-out of...
The SDK's default language is English, but it's also localised for French and Swedish languages. When the device has either Français (Canada)
or Svenska (Sverige)
as its language, the appropriate texts will be displayed. Please note that developer error messages are in English only and they will not be displayed to the user.
In the test environment please use our VISA, Mastercard or American Express test card numbers. You must use a test API Key for them to work.
VISA: 4444000000004*** (the last 3 numbers can be anything)
Mastercard: 5555000000005*** (the last 3 numbers can be anything)
American Express: 3400000000003** or 3700000000003** (the last 2 numbers can be anything)
The Fidel SDK is in active development, we welcome your feedback!
Get in touch:
GitHub Issues - For SDK issues and feedback