diff --git a/.gitignore b/.gitignore index 37a4eb8b43d978ea05b2c6e3fb934f9b40dddd4d..f1f83f4d886c82e621880d4ae1d8636517011e8d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ .externalNativeBuild /entry/.preview .cxx +upload.gradle diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d30eb20c286af8878aff829ef5dfa68eac909f2..ef1fcb269209bb4dcc49127a07550e67e8e7045b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,5 @@ +## 1.0.0 +正式版发布 + ## 0.0.1-SNAPSHOT ohos第一个版本,实现了原库的全部功能 diff --git a/README.md b/README.md index 2381601e5623a5f483d950c2f69db8fdc1017334..fa203980da79d23a2e38f720e473df70a701a08e 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ allprojects { repositories { maven { - url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + url 'https://s01.oss.sonatype.org/content/repositories/releases/' } } } @@ -27,7 +27,7 @@ allprojects { 2.在entry模块的build.gradle文件中, ```gradle dependencies { - implementation('com.gitee.chinasoft_ohos:SpeechRecognitionView:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:SpeechRecognitionView:1.0.0') ...... } ``` @@ -88,7 +88,7 @@ CloudTest代码测试无异常 #### 版本迭代 -- 0.0.1-SNAPSHOT +- 1.0.0 #### 版权和许可信息 diff --git a/build.gradle b/build.gradle index 646c44c668e2409db2fca572f7885c03543078e2..75d57c12da5253ea03b7aa9fe00b947d775d308d 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ ohos { compatibleSdkVersion 5 } } - + buildscript { repositories { maven { @@ -19,8 +19,8 @@ buildscript { } } dependencies { - classpath 'com.huawei.ohos:hap:2.4.5.0' - classpath 'com.huawei.ohos:decctest:1.2.4.1' + classpath 'com.huawei.ohos:hap:2.4.5.5' + classpath 'com.huawei.ohos:decctest:1.2.5.1' } }