From 36a23c15e0674c410604d07b31c37000901eeb17 Mon Sep 17 00:00:00 2001 From: wjt983049539 Date: Mon, 5 Jul 2021 17:56:09 +0800 Subject: [PATCH 1/2] =?UTF-8?q?sdk6=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 ++++- README.md | 5 ++--- build.gradle | 2 +- entry/build.gradle | 2 +- entry/src/main/config.json | 5 ----- 5 files changed, 8 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40cb336..44bf73c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,5 @@ +## 0.0.2-SNAPSHOT +ohos 第二个版本 +* 更新sdk6 ## 0.0.1-SNAPSHOT -ohos 第一个版本,完整实现了原库的全部 api +* ohos 第一个版本,完整实现了原库的全部 api diff --git a/README.md b/README.md index f714de7..792bad3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ 高度可定制:单品、组件化完美支持,对于插件化环境。也可以针对性的定制使用 - 项目移植状态:已完成 - 调用差异:无 -- 开发版本:sdk5,DevEco Studio2.1 Release +- 开发版本:sdk6,DevEco Studio2.2 Beta1 - 基线版本:Router release 2.8.6 ## 演示效果 @@ -284,8 +284,7 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 -## 版本迭代 -- 0.0.1-SNAPSHOT +## 版本迭代- 0.0.2-SNAPSHOT ## 版权和许可信息 diff --git a/build.gradle b/build.gradle index 5e5cfbe..60ddac9 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.huawei.ohos.app' ohos { - compileSdkVersion 5 + compileSdkVersion 6 defaultConfig { compatibleSdkVersion 5 } diff --git a/entry/build.gradle b/entry/build.gradle index 6bd231f..0497acb 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.huawei.ohos.hap' apply plugin: 'com.huawei.ohos.decctest' ohos { - compileSdkVersion 5 + compileSdkVersion 6 defaultConfig { compatibleSdkVersion 5 } diff --git a/entry/src/main/config.json b/entry/src/main/config.json index b5d68a3..24c44a2 100644 --- a/entry/src/main/config.json +++ b/entry/src/main/config.json @@ -5,11 +5,6 @@ "version": { "code": 1000000, "name": "1.0.0" - }, - "apiVersion": { - "compatible": 5, - "target": 5, - "releaseType": "Release" } }, "deviceConfig": {}, -- Gitee From c8dcff150a816f5f88424a88ef785c8b2d1045f4 Mon Sep 17 00:00:00 2001 From: wjt983049539 Date: Mon, 5 Jul 2021 18:02:36 +0800 Subject: [PATCH 2/2] =?UTF-8?q?sdk6=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entry/build.gradle b/entry/build.gradle index 0497acb..32f3960 100644 --- a/entry/build.gradle +++ b/entry/build.gradle @@ -11,8 +11,8 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) testImplementation 'junit:junit:4.13' ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.100' - implementation 'com.gitee.chinasoft_ohos:router_api:0.0.1-SNAPSHOT' - annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:0.0.1-SNAPSHOT' + implementation 'com.gitee.chinasoft_ohos:router_api:0.0.2-SNAPSHOT' + annotationProcessor 'com.gitee.chinasoft_ohos:router_compiler:0.0.2-SNAPSHOT' // 这是依赖本地方式 // annotationProcessor project(path:':router_compiler') // implementation project(path:':router_api') -- Gitee