一.问题分析
- 先是release包网络请求不能成功,报一些okhttp的错和提示。
- 然后关掉混淆,可以了。
- 之后又会出现这种情况,但是bugtags已经删掉了。
- 而且会提示很多[bugtags.info]样的报错
[bugtags.info] [com.rnfs.Downloader] wrapping call to java/net/URL.openConnection()Ljava/net/URLConnection; with io/bugtags/agent/instrumentation/HttpInstrumentation.openConnection(Ljava/net/URLConnection;)Ljava/net/URLConnection;
二.解决方案
1.删掉bugtags的所有引用
2.清除缓存
在工程根目录(root project)下执行
- Mac 系统
./gradlew --stop
./gradlew cleanBuildCache
./gradlew clean build
- Windows
gradlew.bat --stop
gradlew.bat cleanBuildCache
gradlew.bat clean build
然后重新 build,保证 gradle 网络请求插件完全生效或清除
3.重新打包,就可以了