androidstudio签名时报异常androidstudio Found byte-order-mark in the middle of a file [ByteOrderMark]

原因分析:主要原因是SDK得平台工具的版本不对造成的;

解决方案:

在moudle的biuldgrad下配置工具不检查

android {
    
    
    lintOptions {
    
    
        checkReleaseBuilds false    //不检查发布版中的错误
        abortOnError false            //即使sdk 版本错了也要继续执行
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_41477306/article/details/104242728