> For the complete documentation index, see [llms.txt](https://ujhhgtgteams.gitbook.io/wekit-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ujhhgtgteams.gitbook.io/wekit-docs/faq.md).

# 常见问题

## 1. 模块不加载, 日志也没有报错

按照 [此处说明](https://ujhhgtgteams.gitbook.io/wekit-docs/pages/n7leLetQJgF69kzMckbW#修复微信热更新导致的模块不加载) 进行修复。

## 2. 我的微信突然卡得要死, 狂吃内存

尝试禁用「Xposed API 调用保护」和「隐藏应用列表」。

## 3. 模块数据在哪?

`/sdcard/Android/data/<宿主包名>/WeKit`

## 4. 不受支持的旧版本启动一直弹 DEX 缓存更新怎么办?

模块通用设置启用 「禁用版本适配」 或更新到 >= 8.0.65。

## 5. 「聊天/发送卡片消息」在哪里?

合并进了 [「聊天/聊天输入栏增强」](/wekit-docs/liao-tian/chat-input-bar-enhancements.md)。

## 6. LSPosed 提示「此模块是为较新的 Xposed 版本设计的, 因此某些功能可能无法使用」

忽略即可; 模块支持全部 Xposed API 版本。

## 7. 怎么让我的界面恢复正常???? (愚人节彩蛋)

「模块设置 -> 投降」。

## 8. 模块出现问题 (例如找不到入口, 功能失效) 怎么办?

请参考 [问题反馈指南](/wekit-docs/bug-report-guide.md) 提交 Issue。

## 9. 如何解密微信数据库?

1. 开启「模块设置 -> 调试 -> 详细日志」并重启微信
2. 在日志中寻找:

   ```none
   WeDatabaseApi: openDatabase() called with: name=/data/user/0/com.tencent.mm/MicroMsg/xxxxxxxxx/EnMicroMsg.db, password=xxxxxxx, cipherSpec=0,false,0,4000,1024
   ```
3. 使用 `sqlcipher` 逐行执行 (不要连续输入多行):

   ```bash
   sqlcipher ./EnMicroMsg.db

   PRAGMA key = 'xxxxxxx';
   PRAGMA cipher_compatibility = 1;

   ATTACH DATABASE 'decrypted_wechat.db' AS decrypted KEY '';

   SELECT sqlcipher_export('decrypted');
   DETACH DATABASE decrypted;

   .exit
   ```
4. 用 `DB Browser for SQLite` 或类似工具打开 `decrypted_wechat.db`

## 10. 「指纹支付」在分身微信里加解密崩溃

原因为 ROM 提供的应用分身功能不兼容指纹, 不会修复

## 11. 其他问题

[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/Ujhhgtg/WeKit)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://ujhhgtgteams.gitbook.io/wekit-docs/faq.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
