这是一个基于 rime 框架实现的安卓手机输入法,采用 kotlin + jetpack compose 构建。
- 构建:
./gradlew assembleDebug --quiet - 测试:
./gradlew test
- 清除插件数据:
./gradlew clearPlugins - 完全卸载主应用:
./gradlew uninstallApp - 插件开发指南 - 开发插件时必读
- 每次只做一个功能点
- 当前功能点端到端验证通过后,才能开始下一个
- 不要在实现功能 A 时"顺便"重构功能 B
- 当觉得有必要时,就添加单元测试
- 读 PROGRESS.md 了解当前状态
- 读 DECISIONS.md 了解重要决策
- 从 PROGRESS.md 的"下一步"部分继续工作
- 更新 PROGRESS.md
- 跑
./gradlew assembleDebug --quiet确认一致状态 - 提交所有已完成的工作
For all Compose/Android UI tasks, follow the instructions in
.skills/compose-expert/SKILL.md and consult the reference
files in .skills/compose-expert/references/ before answering.