在向苹果请求应用程序审核后,该应用程序因崩溃而被拒绝。此时,我收到了如下 JSON 格式的崩溃日志。
{
"app_name":"Runner",
"timestamp":"2022-11-11 15:18:06.00 -0800",
"app_version":"1.0.8",
"slice_uuid":"168e264b-d858-3918-8bea-74994907868f",
"adam_id":"1574588254",
"build_version":"9",
"platform":2,
"bundleID":"com.raymond.****",
"share_with_app_devs":0,
"is_first_party":0,
"bug_type":"309",
"os_version":"iPhone OS 16.1 (20B82)",
"roots_installed":0,
"name":"Runner",
"incident_id":"10307672-77C6-47A6-AC7C-8D5FF6AF8DAE"
}
......
Run Code Online (Sandbox Code Playgroud)
当我尝试使用 symbolicatecrash 分析该文件时,出现以下错误。
> ./symbolicatecrash 1.crash > symbolicated.crash
No crash report version in 1.crash at ./symbolicatecrash line 1365.
Run Code Online (Sandbox Code Playgroud)
我应该怎么办?先感谢您。
我成功地在 Windows 上构建了 gettext 32bit dll。
我安装了这些。gettext-0.18.11 mingw(包括 msys)
./configure --prefix=/mingw --enable-threads=win32 --enable-relocatable
cd gettext-runtime
make
Run Code Online (Sandbox Code Playgroud)
但我不知道如何构建 64 位 dll。
有人说我应该使用mingw64。然后我安装了mingw64和msys。
但我不知道如何设置 mingw64 和 msys 来构建 64 位 dll。而且我不知道构建 64 位 dll 的 gettext 配置选项。
谢谢。
%errorlevel% 在 WindowsXP 中不起作用。
据我所知,当发生错误时,%errorlevel% 设置为 1 或更高的值,如果没有错误,它将设置为 0。
但是,即使没有错误,%errorlevel% 也是 1。我设置 %errorlevel% 0,即使有错误 %errorlevel% 也是 0。
我认为操作系统不会改变 XP 中的 %errorlevel%。
在 Win7 中它完全可以工作。
@echo off
setlocal enabledelayedexpansion
call dir
echo errorlevel=%errorlevel%
REM expected errorlevel=0 but 1
call dor
echo errorlevel=%errorlevel%
REM expected errorlevel=1
set errorlevel=0
call dor
echo errorlevel=%errorlevel%
REM expected errorlevel=1 but 0
Run Code Online (Sandbox Code Playgroud)
但是如果 errorlevel 1() 看起来有效。
64-bit ×1
batch-file ×1
cmd ×1
errorlevel ×1
flutter ×1
gettext ×1
iso ×1
mingw-w64 ×1
msys ×1
windows ×1