The Android SDK automatically generates META-INF/MANIFEST.MF when it builds an apk file. Is it possible to add custom entries to this file? I'm using a legacy jar that requires it.
Android SDK在构建apk文件时自动生成META-INF / MANIFEST.MF。是否可以向此文件添加自定义条目?我正在使用需要它的传统jar。
Thanks in advance...
提前致谢...
1 个解决方案
#1
0
The entries in META-INF
are generated with jarsigner tool. The format of this file is specified. Thus, even if you add some entries to this file, it seems that the verification process will not pass.
META-INF中的条目是使用jarsigner工具生成的。指定了此文件的格式。因此,即使您向此文件添加一些条目,似乎验证过程也不会通过。
#1
0
The entries in META-INF
are generated with jarsigner tool. The format of this file is specified. Thus, even if you add some entries to this file, it seems that the verification process will not pass.
META-INF中的条目是使用jarsigner工具生成的。指定了此文件的格式。因此,即使您向此文件添加一些条目,似乎验证过程也不会通过。