From d476ba24bd0357e614b7c9a0fbbd3819b100e37a Mon Sep 17 00:00:00 2001 From: GP <158521072@qq.com> Date: Wed, 13 Aug 2025 14:56:53 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=9F=BA=E7=A1=80=E6=96=87=E4=BB=B6=E5=92=8C=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加.gitignore文件管理忽略规则 添加中英文README文件说明项目结构和快速开始指南 --- .gitignore | 13 +++++++++++++ README.md | 14 ++++++++++++++ README_zh.md | 14 ++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 README_zh.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..be45ac0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# IDE files +.vscode/ + +# Build files +build/ + +# Local configuration +local.properties + +# Gradle +.gradle/ +gradlew +gradlew.bat \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..a3864d3 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# CE - MIXUI + +This is a Android project with MIXUI framework. + +## Project Structure + +- `app/` - Main application code +- `libs/` - Third-party libraries +- `build/` - Build outputs + +## Getting Started + +1. Open the project in Android Studio +2. Build and run the application \ No newline at end of file diff --git a/README_zh.md b/README_zh.md new file mode 100644 index 0000000..9ed28c5 --- /dev/null +++ b/README_zh.md @@ -0,0 +1,14 @@ +# CE - MIXUI + +这是一个使用MIXUI框架的Android项目。 + +## 项目结构 + +- `app/` - 主应用程序代码 +- `libs/` - 第三方库 +- `build/` - 构建输出 + +## 开始使用 + +1. 在Android Studio中打开项目 +2. 构建并运行应用程序 \ No newline at end of file