小编use*_*867的帖子

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

我正在尝试签署一个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)

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

java android build android-build

9
推荐指数
1
解决办法
1229
查看次数

Pytorch 从源代码构建给出错误 make: *** 没有规则来使目标“安装”。停止

我正在按照本指南在 Raspberry Pi3B 上从头开始构建 Pytorch。由于某种原因,出现错误:

Building wheel torch-1.2.0a0+f13fadd
-- Building version 1.2.0a0+f13fadd
cmake --build . --target install --config Release -- -j 4
make: *** No rule to make target 'install'.  Stop.
Run Code Online (Sandbox Code Playgroud)

当我打电话时python3 setup.py build。我正在运行 Python 3.5 版本,我不确定为什么这似乎失败了。

cmake raspberry-pi raspberry-pi3 pytorch

5
推荐指数
2
解决办法
2499
查看次数