Error:A problem was found with the configuration of task ':app:packageDebug'.
> File '...debug.keystore' specified for property 'signingConfig.storeFile' does not exist.
在导入第三方的项目时,遇到这个问题。一开始以为是包冲突导致的,后来才发现是由于这个项目配置了KeyStore文件,所以我导入之后就曝出了这个错误。“keystore file does not exist”。所以这里需要去替换自己的keyStore文件,可能有的程序不签名,无法运行,签名的方法如下:
1.click build tag,than select " Edit Build Types" 或者 在app文件上 press F4
2.就可以出现下图的选项卡
3.在Signing里输入自己的KeyStore,再到Build Type选项里选择定义的那个Signing就可以了。