Add SSL Certificate in Android using Volley
🏁 Intro In this post, I’m going to explain how to add certificates to our Android app when we have a file .crt , and of course, it will include a brief explanation of what the file is. So after reading this tutorial we’re going to be familiarized with: 🤔 What the hell is the .crt files. 😎 How to add certificates to my app. This tutorial is going to be based on a project using Volley to make calls to an API, but you can always adapt it for your specific case. 📄 Let’s talk about the certificates 📇 CA's A certificate authority (CA) is a company or organization that acts to validate the identities of entities (such as websites, email addresses, companies, or individual persons) and bind them to cryptographic keys through the issuance of electronic documents known as digital certificates . So basically the CAs give us a way to authenticate ourselves by serving as credentials to validate our identity, enc...