jiashu.ge

Results 7 comments of jiashu.ge

这个问题是因为 log 这个目录是在native 层的代码里面创建的,创建目录用的mode是只有创建的用户才可以读写执行。 在xc_util.c文件里面的这里 if(0 == mkdir(dir, S_IRWXU) || EEXIST == errno) return 0; 这个相当于mode是 700 把这个mode的值改掉就能解决了,改成这个 if(0 == mkdir(dir, S_IRWXU | S_IRWXG | S_IRWXO) || EEXIST == errno)...

在app里的混淆配置里面keep掉FragmentActivity就可以了,建议这个配置也加到库里面

https://stackoverflow.com/questions/52781821/renderscript-broken-with-androidx 升级了compile sdk 和 buildTools 解决了这个问题 ![image](https://user-images.githubusercontent.com/7670817/68447349-93c83c00-021a-11ea-9879-4d69dc1cc0f0.png) 不确定到底是不是这个原因导致的

目前只发现Pixel 5有问题。 想请教几个问题: 1.xcrash是如何针对其他的第三方的native crash搜集库做兼容的,是通过nativeRethrow这个参数吗,有这个参数的时候就重新调用sigaction把oldaction注册进去?在newaction handler回调里面 把oldation注册进去之后oldaction对应的handler是会被系统再次调用吗? 2.xcrash init方法是否需要在每个进程进行初始化

@zengjingfang Hi 看了您的全民K歌native 内存优化相关的博客,里面提到了Glide 565无效的这个点,想问下最终项目里面有去处理这个问题吗。带来的收益如何?

@monxarat I also encountered this problem. I was very slow in camera preview at high resolution. How do you solve this problem? Can you send me the source code? Email:...

I also have this problem. When using queryProductDetailsAsync to retrieve price information, the old price is still returned. When the Google Play payment pop-up window is pulled up, the latest...