Mars Android 接入指南
Mars Android 接入指南 https://github.com/Tencent/mars/wiki/Mars-Android-%E6%8E%A5%E5%85%A5%E6%8C%87%E5%8D%97 gradle 接入 gradle 接入使用的日志加密算法是不加密的,长连接短连接加解包也是默认的,如需自定义请参考 本地编译 。注意 gradle接入因为考虑依赖包体积的大小,只提供了 armeabi 和 x86_64 两种 CPU 架构的 so, 如果你使用的其他 so 有其他架构的,务必不要使用 gradle 依赖,参考 本地编译 编出你需要的 so,否则会报 Couldn’t find “xxxx.so” 的错误 目前 gradle 接入支持两种方式:mars-core 和 mars-wrapper。只是做个 sample 的话建议可以使用 mars-wrapper, 但是如果在实际 App 中使用 mars,建议使用 mars-core 或 本地编译 在 app 的 gradle 文件 app/build.gradle,添加 Mars 的库依赖: dependencies { compile 'com.tencent.mars:mars-core:1.2.2' } 或者 dependencies { compile 'com.tencent.mars:mars