When I tried to upload the app to Google Play, I got the following error, and when I looked it up, I found that there was a problem with the minSdkVersion and targetSdkVersion numbers.
But I'm troubled because I don't know this number.
Could someone give me some advice?
The uploaded APK signature is invalid (signature details).
apksigner error: ERROR (Jar signer****.RSA): JAR signature META-INF.RSA uses/***** digest algorithm SHA-256 and signature algorithm RSA which is not supported on API Level(s) 10-17 for which this APK is being verified
Depending on the API level you are using and the Android version of the target, minSdkVersion
and targetSdkVersion
should be declared with the appropriate numbers in the manifest file.
Note:
<uses-sdk>|Android Developers
© 2024 OneMinuteCode. All rights reserved.