From 7c78b8116ba8398fe3c31dc037cc9f486229dc8e Mon Sep 17 00:00:00 2001 From: wang zhen Date: Fri, 30 Apr 2021 10:37:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README-CHN.md | 170 ------------------------- README-EN.md | 150 ++++++++++++++++++++++ README.md | 254 ++++++++++++++++++++----------------- entry/src/main/config.json | 3 +- 4 files changed, 289 insertions(+), 288 deletions(-) delete mode 100644 README-CHN.md create mode 100644 README-EN.md diff --git a/README-CHN.md b/README-CHN.md deleted file mode 100644 index aa1ff3e..0000000 --- a/README-CHN.md +++ /dev/null @@ -1,170 +0,0 @@ -# ACProgressLite-ohos - -**本项目基于开源项目 [ACProgressLite](https://github.com/cloudist/ACProgressLite) 进行openharmony的移植和开发,可以通过项目标签以及github地址(https://github.com/cloudist/ACProgressLite)追踪到原安卓项目版本** - -#### 项目介绍 - -- 项目名称:ACProgressLite-ohos -- 所属系列:openharmony第三方组件适配移植 -- 功能:openharmony 加载控件库,简洁、易用、可定制性强。用于快速实现类似 iOS 的 “加载中” 等弹出框。 - 类似于 iOS 中的 [MBProgressHUD](https://github.com/jdg/MBProgressHUD) - - **关键词** *Progressbar, Progresswheel, HUD, openharmony, Loading* -- 基线版本:ACProgressLite release V0.0.1 -- 项目移植状态:主功能完成 -- 调用差异:无 -- 开发版本:sdk5,DevEco Studio2.1 beta3 -- 项目作者和维护人:王震 -- 联系方式:wangzhen082@chinasoftinc.com -在sdk5,DevEco Studio2.1 beta3下项目可直接运行 -如无法运行,删除项目.gradle,.idea,build,gradle,build.gradle文件, -并依据自己的版本创建新项目,将新项目的对应文件复制到根目录下 - -## entry运行要求 -通过DevEco studio,并下载openHarmonySDK -将项目中的build.gradle文件中dependencies→classpath版本改为对应的版本(即你的IDE新建项目中所用的版本) - -## Screenshot -

- ACProgressLite -

- -#### 安装教程 - -项目需要添加maven仓库,并且再build.gradle文件下添加依赖 - - ```gradle -// 添加maven仓库 -repositories { - maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' - } -} - -// 添加依赖库 -dependencies { - implementation 'com.gitee.chinasoft_ohos:ACProgressLite:0.0.1-SNAPSHOT' - ...... -} - - ``` - - -###### 使用 - -```java - ACProgressFlower dialog = new ACProgressFlower.Builder(this) - .direction(ACProgressConstant.DIRECT_CLOCKWISE) - .build(); - dialog.setCanceledOnTouchOutside(true); - dialog.show(dialog); -``` -###### 例子 - -* 花瓣类型 - -``` -ACProgressFlower dialog = new ACProgressFlower.Builder(this) - .direction(ACProgressConstant.DIRECT_CLOCKWISE) - .themeColor(Color.WHITE) - .text("Title is here) - .fadeColor(Color.DKGRAY).build(); -dialog.show(dialog); -``` - -* 圆饼类型 - -``` -ACProgressPie dialog = new ACProgressPie.Builder(this) - .ringColor(Color.WHITE) - .pieColor(Color.WHITE) - .updateType(ACProgressConstant.PIE_AUTO_UPDATE) - .build(); -dialog.show(dialog); -``` - -* 自定义类型 - -``` -ACProgressCustom dialog = new ACProgressCustom.Builder(this) - .useImages(R.drawable.p0, R.drawable.p1, R.drawable.p2, R.drawable.p3) - .build(); -dialog.show(dialog); -``` - -## 配置说明 - 目前提供3种类型的加载框:
- 下面是一些通用的配置: -1. `sizeRatio` 背景的大小。值应为小于1的浮点数,表示以屏幕较短一边的相应比例为框体大小,即: -背景边长 = 屏幕较短一边的长度 * sizeRatio -需要注意的是花瓣类型带文字的情况,下文有详细说明 - -1. `bgColor` 背景的颜色,整型值。 -1. `bgAlpha` 背景的透明度,0为全透明,1为不透明,其他透明度设置也类似。 -1. `bgCornerRadius` 背景四个圆角的半径。 - -*其中 bgColor、bgAlpha、bgCornerRadius 不适用于自定义类型* - - -* **花瓣类型** -最常见的类型,支持标题文字显示 - -设置|说明 -:------|:------------------ -themeColor|花瓣起始颜色 -borderPadding|花瓣外沿与背景边缘的距离占背景边长的比例(背景边长指的是根据sizeRatio计算出来的长度) -centerPadding|花瓣内沿与背景中心的距离占背景边长的比例(背景边长指的是根据sizeRatio计算出来的长度) -fadeColor|花瓣终止颜色 -petalCount|花瓣数量 -petalAlpha|花瓣的透明度 -petalThickness|花瓣的粗细 -direction|花瓣的旋转方向,顺时针`ACProgressConstant.DIRECT_CLOCKWISE`或逆时针`DIRECT_ANTI_CLOCKWISE` -speed|旋转速度,每秒的帧数 -text|文本标题,显示在花瓣下方 -textSize|文字大小 -textColor|文字颜色 -textAlpha|文字透明度 -textMarginTop|文字与花瓣之间的距离 -isTextExpandWidth|在设置了文字的情况下是否扩展背景大小值正方形。设置了文字会导致背景高度变大,如果设为`true`花瓣仍然根据sizeRatio的大小绘制但整个宽度会扩展至与高度相等,花瓣水平居中;如果设为`false`背景为长方形 - -* **圆饼类型** -适合显示进度,支持自动更新进度或者手动更新进度。 - -设置|说明 -:------|:------------------ -ringColor|圆环的颜色 -ringAlpha|圆环的透明度 -ringThickness|圆环的粗细 -ringBorderPadding|圆环与背景外沿与背景边缘的距离占背景边长的比例 -pieColor|圆饼的颜色 -pieAlpha|圆饼的透明度 -pieRingDistance|圆饼与圆环的距离占背景边长的比例 -updateType|更新模式。自动更新`PIE_AUTO_UPDATE`或者手动更新`PIE_MANUAL_UPDATE`。手动更新需要调用`setPiePercentage()`。 -speed|自动更新模式下每秒的帧数 -pieces|自动更新模式下圆饼被切分的块数 - - -* **自定义类型** -类似于 GIF,支持 res/drawable 资源数组 或者 图片文件数组 作为数据源。 - -设置|说明 -:------|:------------------ -useImages|使用的图片资源 ID -useFiles|使用的图片文件对象 -speed|每秒的帧数 - -#### 测试信息 - -CodeCheck代码测试无异常 -CloudTest代码测试无异常 -火绒安全病毒安全检测通过 -当前版本demo功能与安卓原组件基本无差异 -测试员:常万里 - -#### 版本迭代 - -- v0.0.1_alpha - -#### 版权和许可信息 - -* [MIT License](http://mit-license.org/) diff --git a/README-EN.md b/README-EN.md new file mode 100644 index 0000000..030746f --- /dev/null +++ b/README-EN.md @@ -0,0 +1,150 @@ +# ACProgressLite - ohos +* this project based on open source projects [ACProgressLite] (https://github.com/cloudist/ACProgressLite) for openharmony migration and development,Can through the project tag as well as making address (https://github.com/cloudist/ACProgressLite) to track the original android version +#### Project Introduction +- Project name: ACProgressLite-OHOS +- Series: OpenHarmony third party component adaptation porting +- Function: OpenHarmony load control library, simple, easy to use, strong customizability.Used to quickly implement similar to iOS "in load" and other pop-up boxes. +Is similar to the [iOS MBProgressHUD] (https://github.com/jdg/MBProgressHUD) + Keywords :Progressbar, Progresswheel, HUD, openharmony, Loading* +- Baseline version: AcProgressLite Release V0.0.1 +- Project migration status: main function complete +- Call difference: none +- Development version: SDK5, Deveco Studio2.1 Beta3 +-Project author and maintainer: Wang Zhen +- Contact: wangzhen082@chinasoftinc.com +The project can be run directly under SDK5, Deveco Studio2.1 Beta3 +If can't run, deleting items. Gradle, idea, build, and gradle, build. Gradle file, +And according to their own version to create a new project, the corresponding files of the new project to the root directory + +## Entry to run requirements +Go through Deveco Studio and download OpenHarmonySDK +Change the dependencies→classpath version in your project's build.gradle file to the corresponding version (that is, the version used in your IDE new project). +## Screenshot +

+ ACProgressLite +

+ + +#### Installation Tutorials +The project needs to add the Maven repository and add dependencies to the build.gradle file +```gradle +// Add the Maven repository +repositories { +Maven { +Url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' +} +} +// Add a dependency library +dependencies { + +implementation('com.gitee.chinasoft_ohos:ACProgressLite:0.0.1-SNAPSHOT') +... +} +``` + +### how to use +```java +AcProgressFlower dialog= new acProgressFlower.Builder(this) +Direction (ACProgressConstant. DIRECT_CLOCKWISE) +The build (); +dialog.SetCanceledOnTouchOutside (true); +dialog.show (dialog); + +``` +###Example +* Petal type +```java +ACProgressFlower dialog = new ACProgressFlower.Builder(this) +Direction (ACProgressConstant. DIRECT_CLOCKWISE) +ThemeColor (Color. WHITE). The text (" Title is here) +FadeColor (Color. DKGRAY). The build (); +dialog.show(dialog); +``` +* Round cake type +```java + +ACProgressPie dialog = new ACProgressPie.Builder(this) +RingColor (Color. WHITE) +PieColor (Color. WHITE) +UpdateType (ACProgressConstant. PIE_AUTO_UPDATE) +The build (); +dialog.show(dialog); +``` +* Custom types +```java + +ACProgressCustom dialog = new ACProgressCustom.Builder(this) +UseImages (R.d rawable. P0, R.d rawable. P1, R.d rawable. P2, R.d rawable. P3) +The build (); +dialog.show(dialog); +``` +## Configuration + 3 types of dialog are avaliable now:
+ Here are some general configurations: +1. `sizeRatio` size of the background. The value is float and less than 1f. It means the ratio of "real size / the smaller edge length of the screen". aka: +background length = the smaller edge length of the screen * sizeRatio +> Pay attention to the situation of "Flower type with text", it will be explained int next scetion. + +1. `bgColor` Color of background, int value. +1. `bgAlpha` Transparency of background. 0 is full transparency, 1 is opaque. All alpha configurations are similar. +1. `bgCornerRadius` Radius of four corners of the background. + +*bgColor, bgAlpha, bgCornerRadius are not available for custom type* + + +* **Flower** +Most commonly used type. Support adding text title. + +**Configuration**|**Description** +:------|:------------------ +themeColor|Start color of petals. +borderPadding|Distance between outer edge of petals and edge of background / length of the edge of background. (length of the edge of background is based on sizeRatio) +centerPadding|Distance between inner edge of petals and center of background / length of the edge of background. (length of the edge of background is based on sizeRatio) +fadeColor|End color of petals. +petalCount|Number of petals. +petalAlpha|Transparency of petals. +petalThickness|Thickness of petals. +direction|Direction of petals' rotation, `ACProgressConstant.DIRECT_CLOCKWISE` or `DIRECT_ANTI_CLOCKWISE`. +speed|Speed of petals' rotation, frames count in each second. +text|Text, shown under petals. +textSize|Text's size. +textColor|Text's color. +textAlpha|Text's transparency. +textMarginTop|Distance between text and petals. +isTextExpandWidth|Whether expand the background width to equal the height when a text title is set. If you set a text title, the background's height will become longer because of making room for text. If this value is `true`, the petals are still drawn by sizeRatio, but petals will be horizontally centered as the background's width is expanded to equal the height; if this value is `false`, the background will be rectangle with different width and height. + +* **Pie** +Suitable for display progress. Manual-update and auto-update are supported. + +**Configuration**|**Description** +:------|:------------------ +ringColor|Color of ring. +ringAlpha|Transparency of ring. +ringThickness|Thickness of ring. +ringBorderPadding|Distance between ring and edge of background / length of the edge of background. +pieColor|Color of pie. +pieAlpha|Transparency of pie. +pieRingDistance|Distance between ring and pie / length of the edge of background. +updateType|Update type. `PIE_AUTO_UPDATE` or `PIE_MANUAL_UPDATE`. Manually update with method `setPiePercentage()`. +speed|frames count in each second with auto-update type. +pieces|pieces of pie with auto-update type. + + +* **Custom** +like GIF, support res/drawable resources ids array or image files array as data source. + +**Configuration**|**Description** +:------|:------------------ +useImages|resources ids array. +useFiles|image files array. +speed|frames count in each second. +#### Test Information +The CodeCheck code tests without exception +The cloudTest code test has no exceptions +Tinder safety virus safety test passed +The current version of Demo function is basically the same as the original Android components +Tester: Chang Wanli +#### version iteration +- v0.0.1-SNAPSHOT +#### Copyright and License Information +* [MIT License](http://mit-license.org/) \ No newline at end of file diff --git a/README.md b/README.md index ca661dc..d644576 100644 --- a/README.md +++ b/README.md @@ -1,149 +1,171 @@ -# ACProgressLite - ohos -* this project based on open source projects [ACProgressLite] (https://github.com/cloudist/ACProgressLite) for openharmony migration and development,Can through the project tag as well as making address (https://github.com/cloudist/ACProgressLite) to track the original android version -#### Project Introduction -- Project name: ACProgressLite-OHOS -- Series: OpenHarmony third party component adaptation porting -- Function: OpenHarmony load control library, simple, easy to use, strong customizability.Used to quickly implement similar to iOS "in load" and other pop-up boxes. -Is similar to the [iOS MBProgressHUD] (https://github.com/jdg/MBProgressHUD) - Keywords :Progressbar, Progresswheel, HUD, openharmony, Loading* -- Baseline version: AcProgressLite Release V0.0.1 -- Project migration status: main function complete -- Call difference: none -- Development version: SDK5, Deveco Studio2.1 Beta3 --Project author and maintainer: Wang Zhen -- Contact: wangzhen082@chinasoftinc.com -The project can be run directly under SDK5, Deveco Studio2.1 Beta3 -If can't run, deleting items. Gradle, idea, build, and gradle, build. Gradle file, -And according to their own version to create a new project, the corresponding files of the new project to the root directory - -## Entry to run requirements -Go through Deveco Studio and download OpenHarmonySDK -Change the dependencies→classpath version in your project's build.gradle file to the corresponding version (that is, the version used in your IDE new project). +# ACProgressLite-ohos + +**本项目基于开源项目 [ACProgressLite](https://github.com/cloudist/ACProgressLite) 进行openharmony的移植和开发,可以通过项目标签以及github地址(https://github.com/cloudist/ACProgressLite)追踪到原安卓项目版本** + +#### 项目介绍 + +- 项目名称:ACProgressLite-ohos +- 所属系列:openharmony第三方组件适配移植 +- 功能:openharmony 加载控件库,简洁、易用、可定制性强。用于快速实现类似 iOS 的 “加载中” 等弹出框。 + 类似于 iOS 中的 [MBProgressHUD](https://github.com/jdg/MBProgressHUD) + + **关键词** *Progressbar, Progresswheel, HUD, openharmony, Loading* +- 基线版本:ACProgressLite release V0.0.1 +- 项目移植状态:主功能完成 +- 调用差异:无 +- 开发版本:sdk5,DevEco Studio2.1 beta3 +- 项目作者和维护人:王震 +- 联系方式:wangzhen082@chinasoftinc.com +在sdk5,DevEco Studio2.1 beta3下项目可直接运行 +如无法运行,删除项目.gradle,.idea,build,gradle,build.gradle文件, +并依据自己的版本创建新项目,将新项目的对应文件复制到根目录下 + +## entry运行要求 +通过DevEco studio,并下载openHarmonySDK +将项目中的build.gradle文件中dependencies→classpath版本改为对应的版本(即你的IDE新建项目中所用的版本) + ## Screenshot

ACProgressLite

+#### 安装教程 -#### Installation Tutorials -The project needs to add the Maven repository and add dependencies to the build.gradle file -```gradle -// Add the Maven repository +项目需要添加maven仓库,并且再build.gradle文件下添加依赖 + + ```gradle +// 添加maven仓库 repositories { -Maven { -Url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' -} + maven { + url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + } } -// Add a dependency library + +// 添加依赖库 dependencies { -Implementation 'com. Gitee. Chinasoft_ohos: ACProgressLite: 0.0.1 - the SNAPSHOT' -... + +implementation('com.gitee.chinasoft_ohos:ACProgressLite:0.0.1-SNAPSHOT') + ...... } -``` -### how to use + ``` + + +###### 使用 + ```java -AcProgressFlower dialog= new acProgressFlower.Builder(this) -Direction (ACProgressConstant. DIRECT_CLOCKWISE) -The build (); -dialog.SetCanceledOnTouchOutside (true); -dialog.show (dialog); + ACProgressFlower dialog = new ACProgressFlower.Builder(this) + .direction(ACProgressConstant.DIRECT_CLOCKWISE) + .build(); + dialog.setCanceledOnTouchOutside(true); + dialog.show(dialog); +``` +###### 例子 + +* 花瓣类型 ``` -###Example -* Petal type -```java ACProgressFlower dialog = new ACProgressFlower.Builder(this) -Direction (ACProgressConstant. DIRECT_CLOCKWISE) -ThemeColor (Color. WHITE). The text (" Title is here) -FadeColor (Color. DKGRAY). The build (); + .direction(ACProgressConstant.DIRECT_CLOCKWISE) + .themeColor(Color.WHITE) + .text("Title is here) + .fadeColor(Color.DKGRAY).build(); dialog.show(dialog); ``` -* Round cake type -```java +* 圆饼类型 + +``` ACProgressPie dialog = new ACProgressPie.Builder(this) -RingColor (Color. WHITE) -PieColor (Color. WHITE) -UpdateType (ACProgressConstant. PIE_AUTO_UPDATE) -The build (); + .ringColor(Color.WHITE) + .pieColor(Color.WHITE) + .updateType(ACProgressConstant.PIE_AUTO_UPDATE) + .build(); dialog.show(dialog); ``` -* Custom types -```java +* 自定义类型 + +``` ACProgressCustom dialog = new ACProgressCustom.Builder(this) -UseImages (R.d rawable. P0, R.d rawable. P1, R.d rawable. P2, R.d rawable. P3) -The build (); + .useImages(R.drawable.p0, R.drawable.p1, R.drawable.p2, R.drawable.p3) + .build(); dialog.show(dialog); ``` -## Configuration - 3 types of dialog are avaliable now:
- Here are some general configurations: -1. `sizeRatio` size of the background. The value is float and less than 1f. It means the ratio of "real size / the smaller edge length of the screen". aka: -background length = the smaller edge length of the screen * sizeRatio -> Pay attention to the situation of "Flower type with text", it will be explained int next scetion. -1. `bgColor` Color of background, int value. -1. `bgAlpha` Transparency of background. 0 is full transparency, 1 is opaque. All alpha configurations are similar. -1. `bgCornerRadius` Radius of four corners of the background. +## 配置说明 + 目前提供3种类型的加载框:
+ 下面是一些通用的配置: +1. `sizeRatio` 背景的大小。值应为小于1的浮点数,表示以屏幕较短一边的相应比例为框体大小,即: +背景边长 = 屏幕较短一边的长度 * sizeRatio +需要注意的是花瓣类型带文字的情况,下文有详细说明 -*bgColor, bgAlpha, bgCornerRadius are not available for custom type* +1. `bgColor` 背景的颜色,整型值。 +1. `bgAlpha` 背景的透明度,0为全透明,1为不透明,其他透明度设置也类似。 +1. `bgCornerRadius` 背景四个圆角的半径。 +*其中 bgColor、bgAlpha、bgCornerRadius 不适用于自定义类型* -* **Flower** -Most commonly used type. Support adding text title. -**Configuration**|**Description** +* **花瓣类型** +最常见的类型,支持标题文字显示 + +设置|说明 :------|:------------------ -themeColor|Start color of petals. -borderPadding|Distance between outer edge of petals and edge of background / length of the edge of background. (length of the edge of background is based on sizeRatio) -centerPadding|Distance between inner edge of petals and center of background / length of the edge of background. (length of the edge of background is based on sizeRatio) -fadeColor|End color of petals. -petalCount|Number of petals. -petalAlpha|Transparency of petals. -petalThickness|Thickness of petals. -direction|Direction of petals' rotation, `ACProgressConstant.DIRECT_CLOCKWISE` or `DIRECT_ANTI_CLOCKWISE`. -speed|Speed of petals' rotation, frames count in each second. -text|Text, shown under petals. -textSize|Text's size. -textColor|Text's color. -textAlpha|Text's transparency. -textMarginTop|Distance between text and petals. -isTextExpandWidth|Whether expand the background width to equal the height when a text title is set. If you set a text title, the background's height will become longer because of making room for text. If this value is `true`, the petals are still drawn by sizeRatio, but petals will be horizontally centered as the background's width is expanded to equal the height; if this value is `false`, the background will be rectangle with different width and height. - -* **Pie** -Suitable for display progress. Manual-update and auto-update are supported. - -**Configuration**|**Description** +themeColor|花瓣起始颜色 +borderPadding|花瓣外沿与背景边缘的距离占背景边长的比例(背景边长指的是根据sizeRatio计算出来的长度) +centerPadding|花瓣内沿与背景中心的距离占背景边长的比例(背景边长指的是根据sizeRatio计算出来的长度) +fadeColor|花瓣终止颜色 +petalCount|花瓣数量 +petalAlpha|花瓣的透明度 +petalThickness|花瓣的粗细 +direction|花瓣的旋转方向,顺时针`ACProgressConstant.DIRECT_CLOCKWISE`或逆时针`DIRECT_ANTI_CLOCKWISE` +speed|旋转速度,每秒的帧数 +text|文本标题,显示在花瓣下方 +textSize|文字大小 +textColor|文字颜色 +textAlpha|文字透明度 +textMarginTop|文字与花瓣之间的距离 +isTextExpandWidth|在设置了文字的情况下是否扩展背景大小值正方形。设置了文字会导致背景高度变大,如果设为`true`花瓣仍然根据sizeRatio的大小绘制但整个宽度会扩展至与高度相等,花瓣水平居中;如果设为`false`背景为长方形 + +* **圆饼类型** +适合显示进度,支持自动更新进度或者手动更新进度。 + +设置|说明 :------|:------------------ -ringColor|Color of ring. -ringAlpha|Transparency of ring. -ringThickness|Thickness of ring. -ringBorderPadding|Distance between ring and edge of background / length of the edge of background. -pieColor|Color of pie. -pieAlpha|Transparency of pie. -pieRingDistance|Distance between ring and pie / length of the edge of background. -updateType|Update type. `PIE_AUTO_UPDATE` or `PIE_MANUAL_UPDATE`. Manually update with method `setPiePercentage()`. -speed|frames count in each second with auto-update type. -pieces|pieces of pie with auto-update type. - - -* **Custom** -like GIF, support res/drawable resources ids array or image files array as data source. - -**Configuration**|**Description** +ringColor|圆环的颜色 +ringAlpha|圆环的透明度 +ringThickness|圆环的粗细 +ringBorderPadding|圆环与背景外沿与背景边缘的距离占背景边长的比例 +pieColor|圆饼的颜色 +pieAlpha|圆饼的透明度 +pieRingDistance|圆饼与圆环的距离占背景边长的比例 +updateType|更新模式。自动更新`PIE_AUTO_UPDATE`或者手动更新`PIE_MANUAL_UPDATE`。手动更新需要调用`setPiePercentage()`。 +speed|自动更新模式下每秒的帧数 +pieces|自动更新模式下圆饼被切分的块数 + + +* **自定义类型** +类似于 GIF,支持 res/drawable 资源数组 或者 图片文件数组 作为数据源。 + +设置|说明 :------|:------------------ -useImages|resources ids array. -useFiles|image files array. -speed|frames count in each second. -#### Test Information -The CodeCheck code tests without exception -The cloudTest code test has no exceptions -Tinder safety virus safety test passed -The current version of Demo function is basically the same as the original Android components -Tester: Chang Wanli -#### version iteration -- v0.0.1 _alpha -#### Copyright and License Information -* [MIT License](http://mit-license.org/) \ No newline at end of file +useImages|使用的图片资源 ID +useFiles|使用的图片文件对象 +speed|每秒的帧数 + +#### 测试信息 + +CodeCheck代码测试无异常 +CloudTest代码测试无异常 +火绒安全病毒安全检测通过 +当前版本demo功能与安卓原组件基本无差异 +测试员:常万里 + +#### 版本迭代 + +- v0.0.1-SNAPSHOT + +#### 版权和许可信息 + +* [MIT License](http://mit-license.org/) diff --git a/entry/src/main/config.json b/entry/src/main/config.json index 385975e..d3c2197 100644 --- a/entry/src/main/config.json +++ b/entry/src/main/config.json @@ -8,8 +8,7 @@ }, "apiVersion": { "compatible": 5, - "target": 5, - "releaseType": "Beta1" + "target": 5 } }, "deviceConfig": {}, -- Gitee