I'm trying to sign an APK for publishing on the Play Store that was originally built with Cordova and Ionic. Now, after going through the steps:
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore release-key.jks android-release-unsigned.apk xxxxxx
zipalign -v 4 android-release-unsigned.apk HelloWorld.apk
apksigner verify HelloWorld.apk
I then get the error when I verify using apksigner as follows:
WARNING: META-INF/services/com.google.protobuf.GeneratedExtensionRegistryLoader
not protected by signature. Unauthorized modifications to this JAR entry will no
t be detected. Delete or move the entry outside of META-INF/.
Will this matter at all? How could I resolve this problem? Is there anything I've done wrong in my build?