android studio 加入极光推送 出现获取sdk版本失败的问题 JPush .so file do not match JPush .jar file in the project

来源:互联网 发布:数据库免费账号 编辑:程序博客网 时间:2024/05/22 06:36

按照极光推送 官方集成文档 出现 出现获取sdk版本失败的问题 JPush .so file do not match JPush .jar file in the project

可以编辑 build.gradle 脚本 添加

android{


sourceSets {
        main {
            jniLibs.srcDirs = ['libs']
        }
    }

......



.....

}

0 0