进程'command 'node'' 在生成签名的 apk 时以非零退出值 1 linux 完成
Process 'command 'node'' finished with non-zero exit value 1 linux whien generating signed apk
Process 'command 'node'' finished with non-zero exit value 1
在使用 Ubuntu 16.04 的 Android Studio 3.4 中,当我生成签名 APK 时会出现此错误。
但是当我生成调试 apk 时就可以了。
我已经尝试了 SO 本身的许多解决方案,但我还没有找到任何解决方案。
有人知道吗?
提前致谢
刚刚将这些行添加到项目 build.gradle 文件中,我能够生成一个已签名的 apk。
allprojects {
configurations.matching { it.name == '_internal_aapt2_binary' }.all { config ->
config.resolutionStrategy.eachDependency { details ->
details.useVersion("3.3.2-5309881")
}
}
}
Process 'command 'node'' finished with non-zero exit value 1
在使用 Ubuntu 16.04 的 Android Studio 3.4 中,当我生成签名 APK 时会出现此错误。 但是当我生成调试 apk 时就可以了。 我已经尝试了 SO 本身的许多解决方案,但我还没有找到任何解决方案。 有人知道吗? 提前致谢
刚刚将这些行添加到项目 build.gradle 文件中,我能够生成一个已签名的 apk。
allprojects {
configurations.matching { it.name == '_internal_aapt2_binary' }.all { config ->
config.resolutionStrategy.eachDependency { details ->
details.useVersion("3.3.2-5309881")
}
}
}