From c859d0f4891224453d5ba5dfd8a600ae07660913 Mon Sep 17 00:00:00 2001 From: liangqingsong Date: Mon, 27 Sep 2021 17:21:10 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E6=AD=A3=E5=BC=8F=E7=89=88?= =?UTF-8?q?=E6=9C=AC1.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ README.md | 14 +++++++------- build.gradle | 2 +- builder_example/build.gradle | 12 +++++++----- entry/build.gradle | 11 +++++++---- fresco_loader/build.gradle | 2 +- glide_loader/build.gradle | 2 +- library/build.gradle | 4 ++-- picasso_loader/build.gradle | 2 +- 9 files changed, 29 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fe09f3..021227f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 1.0.2 +正式版本 ## 0.0.2-SNAPSHOT ohos 第二个版本 * 适配SKD 6 diff --git a/README.md b/README.md index 88ad902..02e05c5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -28,7 +28,7 @@ 2.在entry模块的build.gradle文件中, ```java dependencies { - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:1.0.2') ...... } ``` @@ -41,16 +41,16 @@ ```xml Glide - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-glide:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-glide:1.0.2') Picasso - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-picasso:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-picasso:1.0.2') Fresco - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-fresco:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-fresco:1.0.2') ``` - + #### 使用说明 1.在xml中添加ScrollGalleryView控件 @@ -180,7 +180,7 @@ CloudTest代码测试无异常 ## 版本迭代 -- 0.0.2-SNAPSHOT +- 1.0.2 ## 版权和许可信息 MIT License diff --git a/build.gradle b/build.gradle index 92f416d..15354c4 100644 --- a/build.gradle +++ b/build.gradle @@ -33,7 +33,7 @@ allprojects { url 'https://developer.huawei.com/repo/' } maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } jcenter() } diff --git a/builder_example/build.gradle b/builder_example/build.gradle index 3f206b5..d544b02 100644 --- a/builder_example/build.gradle +++ b/builder_example/build.gradle @@ -22,14 +22,16 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200' - // implementation project(':library') + // 本地依赖 +// implementation project(':library') // implementation project(':glide_loader') // implementation project(':fresco_loader') // implementation project(':picasso_loader') - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-glide:0.0.2-SNAPSHOT') -// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-fresco:0.0.2-SNAPSHOT') -// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-picasso:0.0.2-SNAPSHOT') + // 远程依赖 + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:1.0.2') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-glide:1.0.2') +// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-fresco:1.0.2') +// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-picasso:1.0.2') } decc { supportType = ['html', 'xml'] diff --git a/entry/build.gradle b/entry/build.gradle index b72bde0..4566f49 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -20,14 +20,17 @@ dependencies { testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200' implementation 'io.openharmony.tpc.thirdlib:ohos-SpinKit:1.0.1' + // 本地依赖 // implementation project(':library') // implementation project(':glide_loader') // implementation project(':fresco_loader') // implementation project(':picasso_loader') - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:0.0.2-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-glide:0.0.2-SNAPSHOT') -// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-fresco:0.0.2-SNAPSHOT') -// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-picasso:0.0.2-SNAPSHOT') + + // 远程依赖 + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:1.0.2') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-glide:1.0.2') +// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-fresco:1.0.2') +// implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-picasso:1.0.2') } decc { supportType = ['html', 'xml'] diff --git a/fresco_loader/build.gradle b/fresco_loader/build.gradle index 7b894a7..d541a21 100644 --- a/fresco_loader/build.gradle +++ b/fresco_loader/build.gradle @@ -19,5 +19,5 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.so']) testImplementation 'junit:junit:4.13' implementation 'io.openharmony.tpc.thirdlib:fresco:1.0.0' - implementation project(':library') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:1.0.2') } diff --git a/glide_loader/build.gradle b/glide_loader/build.gradle index bc0a3e8..2e7a1ee 100644 --- a/glide_loader/build.gradle +++ b/glide_loader/build.gradle @@ -17,6 +17,6 @@ ohos { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testImplementation 'junit:junit:4.13' - implementation project(':library') implementation 'io.openharmony.tpc.thirdlib:glide:1.0.4' + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:1.0.2') } diff --git a/library/build.gradle b/library/build.gradle index 1d76cf8..d21e1f6 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -20,5 +20,5 @@ dependencies { testImplementation 'junit:junit:4.13' implementation 'io.openharmony.tpc.thirdlib:PhotoView:1.1.0' // implementation project(':playerviewlibrary') - implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-playerviewlibrary:0.0.2-SNAPSHOT') -} + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-playerviewlibrary:1.0.0') +} \ No newline at end of file diff --git a/picasso_loader/build.gradle b/picasso_loader/build.gradle index bdf2ac4..ef0e965 100644 --- a/picasso_loader/build.gradle +++ b/picasso_loader/build.gradle @@ -19,5 +19,5 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' implementation 'io.openharmony.tpc.thirdlib:picasso:1.0.4' - implementation project(':library') + implementation('com.gitee.chinasoft_ohos:ScrollGalleryView-library:1.0.2') } -- Gitee