# Conflicts:
#	.gitignore
This commit is contained in:
Yutousama 2022-05-23 17:19:14 +08:00
commit c8bd6e3884
2 changed files with 73 additions and 14 deletions

45
.gitignore vendored
View File

@ -1,15 +1,32 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
# ---> Android
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Log/OS Files
*.log
# Android Studio generated files and folders
captures/
.externalNativeBuild/
.cxx/
*.apk
output.json
# IntelliJ
*.iml
.idea/
# Keystore files
*.jks
*.keystore
# Google Services (e.g. APIs or Firebase)
google-services.json
# Android Profiling
*.hprof

42
README.md Normal file
View File

@ -0,0 +1,42 @@
# 项目说明
#### 介绍
**以下是 Git 平台说明,您可以替换此简介**
#### 软件架构
软件架构说明
#### 安装教程
1. xxxx
2. xxxx
3. xxxx
#### 使用说明
1. xxxx
2. xxxx
3. xxxx
#### 参与贡献
1. Fork 本仓库
2. 新建 Feat_xxx 分支
3. 提交代码
4. 新建 Pull Request
#### 特技
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
#### 上传项目到git
```
git init
git add *
git commit -m 'init'
git remote add origin Missing
git pull origin master --allow-unrelated-histories
git push --set-upstream origin master
```