From 055c512111d6ba927306591ff557d3a7bcd228a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=93=E7=A8=8B?= <1019678117@qq.con> Date: Tue, 15 Jun 2021 15:21:18 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41f6861..6dfa3ff 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # ExplosionField #### 项目介绍 -- 项目名称:爆炸性粉尘动画视图 +- 项目名称:ExplosionField - 所属系列:openharmony的第三方组件适配移植 - 功能:自定义的一个炫酷爆炸性粉尘效果的动画视图 - 项目移植状态:主功能完成 -- Gitee From 619f58bf1aa44e35ffb7c2537d328e4c77303e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=93=E7=A8=8B?= <1019678117@qq.con> Date: Tue, 15 Jun 2021 16:51:18 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86readme=E5=92=8C?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.OPENSOURCE | 2 +- README.md | 33 ++++++++++++++++++++------------- build.gradle | 3 +++ entry/build.gradle | 4 ++-- 4 files changed, 26 insertions(+), 16 deletions(-) diff --git a/README.OPENSOURCE b/README.OPENSOURCE index 5029f80..2c48a38 100644 --- a/README.OPENSOURCE +++ b/README.OPENSOURCE @@ -8,7 +8,7 @@ "License File": "LICENSE", - "Version Number": "2.0", + "Version Number": "master", "Upstream URL": "https://github.com/tyrantgit/ExplosionField", diff --git a/README.md b/README.md index 6dfa3ff..253bea0 100644 --- a/README.md +++ b/README.md @@ -7,22 +7,29 @@ - 项目移植状态:主功能完成 - 调用差异:无 - 开发版本:sdk5,DevEco Studio2.1 Release -- 基线版本:Release master +- 基线版本:master #### 效果演示 #### 安装教程 - 1.在项目根目录下的build.gradle文件中, - allprojects { - repositories { - maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' - } - } - } - 2.在entry模块的build.gradle文件中, - dependencies { - implementation('com.gitee.chinasoft_ohos3:hawk:0.0.1-SNAPSHOT') - +1.在项目根目录下的build.gradle文件中, + + ``` + allprojects { + repositories { + maven { + url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + } + } + } + ``` +2.在entry模块的build.gradle文件中, + + ``` + dependencies { + implementation('com.gitee.chinasoft_ohos:ExplosionField:0.0.1-SNAPSHOT') + ...... + } + ``` 在sdk5,DevEco Studio2.1 Release下项目可直接运行 如无法运行,删除项目.gradle,.idea,build,gradle,build.gradle文件, diff --git a/build.gradle b/build.gradle index d3c9f1f..3c52aa1 100644 --- a/build.gradle +++ b/build.gradle @@ -32,6 +32,9 @@ allprojects { maven { url 'https://developer.huawei.com/repo/' } + maven { + url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + } jcenter() } } diff --git a/entry/build.gradle b/entry/build.gradle index c19573e..2231776 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -19,8 +19,8 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' - compile project(path: ':explosionfield') + implementation('com.gitee.chinasoft_ohos:ExplosionField:0.0.1-SNAPSHOT') } decc { - supportType = ['html','xml'] + supportType = ['html', 'xml'] } -- Gitee