Flutter项目配置GitCode访问令牌注意事项
ls harmony/entry/src/main/config.json 2>/dev/null || echo "缺少config.json"ls harmony/settings.gradle 2>/dev/null || echo "缺少settings.gradle"GitCode鸿蒙跨平台开发者社区https://gitcode.com/oh-flutter。# 检查 harmony/
https://blog.csdn.net/2301_80035882/article/details/155078013?spm=1001.2014.3001.5502
萌新首先按照以上链接内文章操作,我将提出操作中可能会遇到的DevEco Studio/IDE 无法识别 HarmonyOS 项目 的问题,及相关注意事项进行详细补充一下
一.先了解GitCod
GitCode 是 CSDN 和华为云 CodeArts 联合打造的新一代开源代码托管平台。它集成代码托管、协同研发等功能,还有中文界面与本地化支持,还能加速 GitHub 项目访问,同时通过扶持计划助力国内开源项目,适配个人、团队及企业等多类开发场景。
二.相关文档
GitCode鸿蒙开发者社区https://gitcode.com/oh-tpc
GitCode鸿蒙跨平台开发者社区https://gitcode.com/oh-flutter
三.安全注意事项
1. 绝对不要提交令牌到版本控制
// ❌ 危险!这样提交到Git会泄露令牌
static const demoToken = 'ghp_xxxxxxxxxxxxxxxxxxxx';
// ✅ 正确做法:使用 .gitignore 保护
static const demoToken = '<你的 GitCode 个人访问令牌>'; // 本地修改,不提交
2. 将配置文件加入 .gitignore
在项目根目录的 .gitignore 文件中添加:
# 配置文件
lib/core/app.config.dart
lib/core/app_config.dart
config/
.env
.env.local
*.env
四.安全检查清单
完成配置后,检查以下事项:
1. ✅ 令牌已正确复制(无多余空格,引号完整)
2. ✅ 配置文件在 .gitignore 中(不会提交到版本控制)
3. ✅ 原始示例文件已备份(lib/core/app.config.dart.example)
4. ✅ 应用能正常启动(配置读取无错误)
5. ✅ API调用正常(使用令牌的请求成功)
6. ✅ 无敏感信息泄露(检查代码中是否有硬编码的令牌)
五.DevEco Studio/IDE 无法识别 HarmonyOS 项目 的问题
🔍 常见错误原因
1. 错误原因:在DevEco Studio中只打开了 harmony 子目录
· 解决:打开包含 harmony 的父目录
2. 错误原因:项目结构不完整
· 解决:重新创建HarmonyOS模块
3. 错误原因:Flutter版本不支持HarmonyOS
· 解决:使用支持HarmonyOS的Flutter版本
🛠 解决方案
方案1:检查项目结构完整性
一个完整的 Flutter + HarmonyOS 项目需要以下结构:
your_project/
├── harmony/ ← **必须要有这个目录**
│ ├── entry/
│ │ ├── src/
│ │ │ ├── main/
│ │ │ │ ├── ets/
│ │ │ │ ├── resources/
│ │ │ │ └── config.json ← **关键文件**
│ │ └── build.gradle
│ ├── build.gradle
│ └── settings.gradle
├── lib/
├── pubspec.yaml
└── (其他Flutter文件)
检查是否有这些关键文件:
# 在项目根目录运行
ls harmony/entry/src/main/config.json 2>/dev/null || echo "缺少config.json"
ls harmony/settings.gradle 2>/dev/null || echo "缺少settings.gradle"
方案2:重新配置HarmonyOS模块
如果 harmony 目录不完整:
# 1. 确保在Flutter项目根目录
cd your_flutter_project
# 2. 如果harmony目录存在但不完整,先删除
rm -rf harmony # Windows: rmdir /s /q harmony
# 3. 重新创建HarmonyOS模块
flutter create --platforms=harmonyos .
# 4. 或者手动创建(如果上面的命令不支持)
mkdir -p harmony/entry/src/main/resources/base/media
mkdir -p harmony/entry/src/main/ets/entryability
方案3:使用正确的IDE打开项目
方式A:使用 DevEco Studio
1. 不要直接打开 harmony 文件夹
2. 应该打开整个 Flutter项目根目录
3. DevEco Studio 会自动识别 HarmonyOS 模块
方式B:使用 VS Code + 插件
1. 安装 Flutter 插件
2. 安装 HarmonyOS 插件(如果有)
3. 打开整个项目根目录
方案4:检查并修复配置文件
修复 config.json:
{
"app": {
"bundleName": "com.example.app",
"vendor": "example",
"versionCode": 1000000,
"versionName": "1.0.0",
"icon": "$media:app_icon",
"label": "$string:app_name"
},
"deviceConfig": {},
"module": {
"name": "entry",
"type": "entry",
"description": "$string:module_desc",
"mainElement": "EntryAbility",
"deviceTypes": ["phone", "tablet"],
"deliveryWithInstall": true,
"installationFree": false,
"pages": "$profile:main_pages",
"abilities": [{
"name": "EntryAbility",
"srcEntry": "./ets/entryability/EntryAbility.ets",
"description": "$string:EntryAbility_desc",
"icon": "$media:icon",
"label": "$string:EntryAbility_label",
"startWindowIcon": "$media:icon",
"startWindowBackground": "$color:start_window_background",
"exported": true
}]
}
}
方案5:验证和构建项目
# 1. 验证项目结构
cd harmony
./gradlew projects # Windows: gradlew projects
# 应该看到类似输出:
# Root project 'harmony'
# \--- Project ':entry'
# 2. 尝试同步项目
./gradlew sync
# 3. 如果失败,检查Gradle配置
cat settings.gradle
# 应该包含:include ':entry'
方案6:如果是从旧项目迁移
旧版 HarmonyOS 项目可能需要升级:
# 升级HarmonyOS SDK版本
# 检查 harmony/entry/build.gradle
compileSdkVersion = 9 # 确保是最新版本
更多推荐




所有评论(0)