I was trying to upload my APK having targetSDK version as 30 on Google Play store but it is restricting me to upload the APP and giving error "you uploaded an APK with an invalid signature error from APK signer error minimum signature scheme for target SDK" . Please help me with this issue. My Project is in Eclipse and I build my APK from Eclipse itself.
Asked
Active
Viewed 1,697 times
1 Answers
0
You should sign your APK with apksigner
(https://developer.android.com/studio/command-line/apksigner), not jarsigner
, and ensure to enable v2 signing, which is required in targetSdk 30.

Pierre
- 15,865
- 4
- 36
- 50
-
Thanks for your response but could you please guide me more on this , because when I am opening the link it is showing me how to use the apksigner. But I am not able to figure out how to download the apksigner. – Khushi Kapoor Jan 18 '22 at 16:49
-
`apksigner` is part of Android SDK Tools. I'm not familiar with Eclipse Android development, but it should be part of the Android installation. – Pierre Jan 19 '22 at 15:20
-
Thank you for your help. – Khushi Kapoor Feb 04 '22 at 20:02