'Is there a way to get alternative of signature key of my android app
Just like getting signature of app ( which unfortunately is accessible from any other app and not my app only ) is there any secret key for every app that can't be returned expect from my app so I can use for anti modding
Solution 1:[1]
I think you misunderstand what signing is for. Signing, on an open platform, does not prevent other people from modifying data. What signing does is authenticate that data is from a particular person. But if I take your apk and resign it with my own key, I'm not claiming that this is an @ArabWare app, I'm claiming its my app. It just so happens to have your code. Signing does not prevent this.
The only way to make signing prevent this is to have a closed system- to only allow certain people with certain signatures the ability to run software on it. Android is not a closed system. As such, signing cannot be used to prevent other people from resigning your app.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Gabe Sechan |
