Reda Amor
Reda Amor

Reputation: 1

what the solution of this error ( Target SDK version 30 requires a minimum of signature scheme v2 )

what the solution of this error ( Target SDK version 30 requires a minimum of signature scheme v2 )

Error de apksigner: ERROR: MIN_SIG_SCHEME_FOR_TARGET_SDK_NOT_MET: Target SDK version 30 requires a minimum of signature scheme v2; the enter image description hereAPK is not signed with this or a later signature scheme

Upvotes: 0

Views: 2145

Answers (2)

Marth
Marth

Reputation: 75

This simple solution worked for me: after you run your .\zipalign run this command:

apksigner sign --ks yourkeystore.keystore yourapk.apk

To verify the signing:

apksigner verify -v yourapk.apk

This allowed me to sign with v3 and now I can upload to store no problem.

Upvotes: 1

Faisal Khan
Faisal Khan

Reputation: 382

When you create a release app it gives you options to sign , just check the V2 signature box and proceed everything should be fine after that

Upvotes: 0

Related Questions