. 1 min read
In this post, I will explain to you how we can check which key store is used to sign your APK file. For this process, we are going to use Java 7’s Key and Certificate Management Tool ( keytool
) to check the signature of a Keystore or an APK without extracting any files. This technique is very simple and very useful.
To check the Signature of your app you can follow the below steps.
Step 1. Open your folder where you store your APK file in the terminal.
Step 2. Now you need to run this command keytool -printcert -jarfile app-release.apk
.
Step 3. Once you enter the above command you will get your Certificate fingerprints information as shown in the below image.
To check the signature of a Keystore of a file you can use bellow simple steps.
Step 1. Open your folder where you store your Keystore file in the terminal.
Step 2. Now run this command keytool -list -v -keystore {my-app.keystore} -alias {my-app}
you need to replace my-app.keystore with your Keystore filename and also replace my-app with your app alias.
Step 3. When you enter this command you need to enter your password and when you entered your password you will get your file signature as shown in the bellow image.
When you run the command you will get aliases (entries) in the Keystore file my-app.keystore
, with the certificate fingerprints (MD5, SHA1, and SHA256)
Hope this post helps you to get your APK signature information.
Implement Google Mobile Ads in your React Native application to allows you to monetize your app with AdMob.
Learn how to deploy React and Node.Js application using CI/CD pipeline with Github Actions.
DevOps is a set of practices, tools, and a cultural philosophy that automate and integrate the processes between software development and IT teams. It emphasizes team empowerment, cross-team communication and collaboration, and technology automation.
Learn different between find(), filter() and map() in javascript with example and other array methods in javascript.
MongoDB is an open-source document-oriented database that is designed to store a large scale of data and also allows you to work with that data very efficiently. It is categorized under the NoSQL (Not only SQL) database because the storage and retrieval o