!5 更新开源图库Readme

Merge pull request !5 from sunjunxiong/master
This commit is contained in:
openharmony_ci 2021-07-21 15:13:59 +00:00 committed by Gitee
commit bc40add71d
7 changed files with 116 additions and 29 deletions

1
.gitignore vendored
View File

@ -4,7 +4,6 @@
.idea/*
.idea/gradle.xml
.DS_Store
/build.gradle
build/outputs/hap/*
build/outputs/app/release/com.ohos.photos-release-unsigned.app
build/outputs/app/release/pack.info

View File

@ -1,39 +1,40 @@
# applications_photos
# Photos<a name="EN-US_TOPIC_0000001177189635"></a>
#### 介绍
{**以下是 Gitee 平台说明,您可以替换此简介**
Gitee 是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN。专为开发者提供稳定、高效、安全的云端软件开发协作平台
无论是个人、团队、或是企业,都能够用 Gitee 实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)}
- [Introduction](#section443318452403)
- [Architecture](#section17686421134110)
#### 软件架构
软件架构说明
- [Directory Structure](#section7867113874118)
- [Repositories Involved](#section229716044218)
## Introduction<a name="section443318452403"></a>
#### 安装教程
The Photos app is a pre-installed system app in the OpenHarmony system. It provides users with basic image browsing and album management functions, including viewing, moving, copying, deleting, and renaming images and videos.
1. xxxx
2. xxxx
3. xxxx
### Architecture<a name="section17686421134110"></a>
#### 使用说明
![](figures/l2.png)
1. xxxx
2. xxxx
3. xxxx
## Directory Structure<a name="section7867113874118"></a>
#### 参与贡献
```
/applications/standard/photos/
├── figures # Architecture figures
├── entry
│ └── src
│ └── main
│ ├── config.json # Global configuration file
│ ├── resources # Resource configuration files
│ └── js # JavaScript code
│ └── common # Public resources
│ └── i18n # Internationalization
│ └── pages # Page code
├── signature # Certificate files
├── LICENSE # License files
```
1. Fork 本仓库
2. 新建 Feat_xxx 分支
3. 提交代码
4. 新建 Pull Request
## Repositories Involved<a name="section229716044218"></a>
System apps
#### 特技
**applications\_standard\_photos**
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com)
3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目
4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目
5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)

40
README_zh.md Normal file
View File

@ -0,0 +1,40 @@
# 图库<a name="ZH-CN_TOPIC_0000001177189635"></a>
- [简介](#section443318452403)
- [架构图](#section17686421134110)
- [目录](#section7867113874118)
- [相关仓](#section229716044218)
## 简介<a name="section443318452403"></a>
图库应用是在OpenHarmony标准系统中预制的系统应用为用户提供基础的图片浏览、相册管理功能包括图片、视频资源的查看、移动、复制、删除、重命名等功能。
### 架构图<a name="section17686421134110"></a>
![](figures/L2.png)
## 目录<a name="section7867113874118"></a>
```
/applications/standard/photos/
├── figures # 架构图目录
├── entry
│ └── src
│ └── main
│ ├── config.json # 全局配置文件
│ ├── resources # 资源配置文件存放目录
│ └── js # js代码目录
│ └── common # 公共资源目录
│ └── i18n # 国际化
│ └── pages # 页面代码目录
├── signature # 证书文件目录
├── LICENSE # 许可文件
```
## 相关仓<a name="section229716044218"></a>
系统应用
**applications\_standard\_photos**

37
build.gradle Normal file
View File

@ -0,0 +1,37 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.huawei.ohos.app'
ohos {
compileSdkVersion 6
defaultConfig {
compatibleSdkVersion 6
}
}
buildscript {
repositories {
maven {
url 'https://mirrors.huaweicloud.com/repository/maven/'
}
maven {
url 'https://developer.huawei.com/repo/'
}
jcenter()
}
dependencies {
classpath 'com.huawei.ohos:hap:2.4.5.0'
classpath 'com.huawei.ohos:decctest:1.2.4.1'
}
}
allprojects {
repositories {
maven {
url 'https://mirrors.huaweicloud.com/repository/maven/'
}
maven {
url 'https://developer.huawei.com/repo/'
}
jcenter()
}
}

1
entry/.gitignore vendored
View File

@ -1,5 +1,4 @@
/build
module_entry.xml
module_entry_Mon_Jan_25_09-05-43_GMT+08-00_2021.xml
build.gradle
/build/

11
entry/build.gradle Normal file
View File

@ -0,0 +1,11 @@
apply plugin: 'com.huawei.ohos.hap'
apply plugin: 'com.huawei.ohos.decctest'
ohos {
compileSdkVersion 6
defaultConfig {
compatibleSdkVersion 6
}
supportSystem "standard"
}

BIN
figures/L2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB