- Encoding/decoding Android Key

Android Studio includes a tool to create a new key in the Generate Signed Bundle or APK wizard but here's how you can encode and decode your own key

Encoding

Step 1

openssl base64 < akadenia.jks | tr -d '\n' | tee akadenia.jks.base64.txt

Step 2

openssl enc -base64 -in key.jks -out signing_key.b64 | tr -d '\n' | tee basereactnative.jks.base64.txt

Decoding

openssl enc -d -base64 -in signing_key.b64 -out akadenia.jks
Engineering Team

Written by Engineering Team

Development

More articles

Deploying an NFT smart contract

Launching NFTs: Your Guide to Smart Contract Deployment

Read article

GitHub action runners in AWS EC2

Building Pipelines: Working with GitHub Action Runners and AWS EC2 Instances

Read article