hi,
im using the native http plugin. i want my app to send the clientbased certificate with each request.
i placed my .cer file in platforms/android/assets
my request looks like:
this.http.get('https://someip/testapi', {}, {})
.then(data => {
console.log("data",data)
})
.catch(error => {
console.log("error",error);
});