From 54cfe521f6afc167f9beaeaff0166cd19c3e008a Mon Sep 17 00:00:00 2001 From: 0000248716-lijiaxiao Date: Tue, 6 Jul 2021 14:28:41 +0800 Subject: [PATCH] 1.0 --- CHANGELOG.md | 3 +++ README.md | 10 +++++----- build.gradle | 2 +- entry/build.gradle | 2 +- entry/src/main/config.json | 4 ---- library/build.gradle | 2 +- library/src/main/config.json | 5 ----- 7 files changed, 11 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ab25a..197c27c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.0.2-SNAPSHOT +ohos 第2个版本 +* 更新sdk6 ## 0.0.1-SNAPSHOT ohos 第一个版本 diff --git a/README.md b/README.md index e9296c4..27511f4 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ - 项目名称:Bluetooth-LE-Library---Ohos - 所属系列:openharmony的第三方组件适配移植 - 功能:该库可轻松访问Bluetooth LE设备的AdRecord和RSSI值。它为iBeacons提供了其他功能。 -- 基线版本: Release v1.1.1 - 项目移植状态:主功能完成 - 调用差异:无 -- 开发版本:sdk5,DevEco Studio 2.1 Release +- 开发版本:sdk6,DevEco Studio 2.2 Beta1 +- 基线版本: Release v1.1.1 #### 效果演示 @@ -27,7 +27,7 @@ 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:Bluetooth_LE_Library:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:Bluetooth_LE_Library:0.0.2-SNAPSHOT') ...... } ``` @@ -104,13 +104,13 @@ CodeCheck代码测试无异常 CloudTest代码测试无异常 -火绒安全病毒安全检测通过 +病毒安全检测通过 当前版本demo功能与原组件基本无差异 #### 版本迭代 -- 0.0.1-SNAPSHOT +- 0.0.2-SNAPSHOT #### 版权和许可信息 ``` diff --git a/build.gradle b/build.gradle index ad164cd..78451ae 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 5a04d97..1e0d257 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 e881a6c..4c23d67 100644 --- a/entry/src/main/config.json +++ b/entry/src/main/config.json @@ -5,10 +5,6 @@ "version": { "code": 1000000, "name": "1.0" - }, - "apiVersion": { - "compatible": 5, - "target": 5 } }, "deviceConfig": {}, diff --git a/library/build.gradle b/library/build.gradle index 25ddf0c..7e1e475 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -1,6 +1,6 @@ apply plugin: 'com.huawei.ohos.library' ohos { - compileSdkVersion 5 + compileSdkVersion 6 defaultConfig { compatibleSdkVersion 5 } diff --git a/library/src/main/config.json b/library/src/main/config.json index 17e9422..d4d6e00 100644 --- a/library/src/main/config.json +++ b/library/src/main/config.json @@ -5,11 +5,6 @@ "version": { "code": 1, "name": "1.0" - }, - "apiVersion": { - "compatible": 5, - "target": 5, - "releaseType": "Release" } }, "deviceConfig": { -- Gitee