-
Notifications
You must be signed in to change notification settings - Fork 620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在android 12小米手机上,由Xcrash创建的log文件夹权限为drwx--S--- #109
Comments
Yes, I have the same problem. run cmd: ls -al
cd logs: Permission denied Have you solved the problem? thanks |
这个问题是因为 log 这个目录是在native 层的代码里面创建的,创建目录用的mode是只有创建的用户才可以读写执行。 这个问题我在Android 11 12都有遇到过,在低版本的Android(Api 7, 8)上好像没有这个问题。 |
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
您好,最近休假结束了么 |
这是来自QQ邮箱的假期自动回复邮件。
您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。
|
如果本地调试的话,可以找台root手机,没有root的话,可以run-as到你的demo app,然后查看tombstone文件。 线上的话xcrash的使用场景是由app进程自己读取tombstone文件,然后发送到服务端,应该不会有权限问题。 |
xcrash.XCrash.init(this, new XCrash.InitParameters().setLogDir(getExternalFilesDir(null).getAbsolutePath() + "/log/"));
创建的文件夹权限为drwx--S---,tombstone文件权限为-rw-r-----
正常应该是文件夹权限为drwxrwx--x,tombstone文件权限为-rw-rw----
文件无法取出,这个问题可能由什么原因导致的。
The text was updated successfully, but these errors were encountered: