How do I find out which keystore was used to sign an app?

前端 未结 6 1997
无人及你
无人及你 2020-11-22 15:47

I have an app which is signed and several keystore files. I\'d like to update the app, so I need to find out which one of keys was used.

How can I match which keysto

6条回答
  •  心在旅途
    2020-11-22 16:28

    You can do this with the apksigner tool that is part of the Android SDK:

    apksigner verify --print-certs my_app.apk

    You can find apksigner inside the build-tools directory. For example: ~/Library/Android/sdk/build-tools/29.0.1/apksigner

提交回复
热议问题