在构建Android应用程序时没有签名对特定清单条目的保护

use*_*867 9 java android build android-build

我正在尝试签署一个APK,以便在最初使用Cordova和Ionic构建的Play商店发布.现在,经过以下步骤:

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
Run Code Online (Sandbox Code Playgroud)

然后,当我使用apksigner验证时,我得到错误,如下所示:

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/.
Run Code Online (Sandbox Code Playgroud)

这有关系吗?我怎么能解决这个问题?我的构建中有什么问题吗?

gar*_*net 0

  1. 提取APK
  2. 删除 META-INF/ 中的所有文件
  3. 将整个内容压缩为 .apk
  4. 现在签署上面的APK,没有任何错误。