From 781e58c52047e6211904ceca77af9d23282910ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=93=E7=A8=8B?= <1019678117@qq.con> Date: Mon, 28 Jun 2021 15:13:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 ++++++--- README.md | 8 ++++---- build.gradle | 2 +- entry/build.gradle | 4 ++-- entry/src/main/config.json | 8 ++------ entry/src/ohosTest/config.json | 4 ---- explosionfield/build.gradle | 2 +- explosionfield/src/main/config.json | 8 ++------ 8 files changed, 18 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f34df31..12b3324 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ -## 0.0.1-SNAPSHOT - -ohos 第一个版本,完整实现了原库的全部 api \ No newline at end of file +## 0.0.2-SNAPSHOT +ohos 第2个版本 + * 更新sdk6 +## 0.0.1-SNAPSHOT +ohos 第1个版本 + * 实现了原库的全部ap \ No newline at end of file diff --git a/README.md b/README.md index 253bea0..32390ee 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ - 功能:自定义的一个炫酷爆炸性粉尘效果的动画视图 - 项目移植状态:主功能完成 - 调用差异:无 -- 开发版本:sdk5,DevEco Studio2.1 Release +- 开发版本:sdk6,DevEco Studio2.2 Beta1 - 基线版本:master #### 效果演示 @@ -26,12 +26,12 @@ ``` dependencies { - implementation('com.gitee.chinasoft_ohos:ExplosionField:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ExplosionField:0.0.2-SNAPSHOT') ...... } ``` -在sdk5,DevEco Studio2.1 Release下项目可直接运行 +在sdk6,DevEco Studio2.2 Beta1下项目可直接运行 如无法运行,删除项目.gradle,.idea,build,gradle,build.gradle文件, 并依据自己的版本创建新项目,将新项目的对应文件复制到根目录下 @@ -58,7 +58,7 @@ CloudTest代码测试无异常 #### 版本迭代 -0.0.1-SNAPSHOT +0.0.2-SNAPSHOT #### License diff --git a/build.gradle b/build.gradle index 3c52aa1..0599918 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 2231776..496a168 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 } @@ -19,7 +19,7 @@ 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:ExplosionField:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ExplosionField:0.0.2-SNAPSHOT') } decc { supportType = ['html', 'xml'] diff --git a/entry/src/main/config.json b/entry/src/main/config.json index 43775b0..5c7fd00 100644 --- a/entry/src/main/config.json +++ b/entry/src/main/config.json @@ -3,12 +3,8 @@ "bundleName": "com.tyrantgit.sample", "vendor": "tyrantgit", "version": { - "code": 1, - "name": "1.0" - }, - "apiVersion": { - "compatible": 5, - "target": 5 + "code": 1000000, + "name": "1.0.0" } }, "deviceConfig": {}, diff --git a/entry/src/ohosTest/config.json b/entry/src/ohosTest/config.json index 675b593..de79aef 100644 --- a/entry/src/ohosTest/config.json +++ b/entry/src/ohosTest/config.json @@ -5,10 +5,6 @@ "version": { "code": 1, "name": "1.0" - }, - "apiVersion": { - "compatible": 5, - "target": 5 } }, "deviceConfig": {}, diff --git a/explosionfield/build.gradle b/explosionfield/build.gradle index 25ddf0c..7e1e475 100644 --- a/explosionfield/build.gradle +++ b/explosionfield/build.gradle @@ -1,6 +1,6 @@ apply plugin: 'com.huawei.ohos.library' ohos { - compileSdkVersion 5 + compileSdkVersion 6 defaultConfig { compatibleSdkVersion 5 } diff --git a/explosionfield/src/main/config.json b/explosionfield/src/main/config.json index cc59add..20f8561 100644 --- a/explosionfield/src/main/config.json +++ b/explosionfield/src/main/config.json @@ -3,12 +3,8 @@ "bundleName": "com.tyrantgit.sample", "vendor": "tyrantgit", "version": { - "code": 1, - "name": "1.0" - }, - "apiVersion": { - "compatible": 5, - "target": 5 + "code": 1000000, + "name": "1.0.0" } }, "deviceConfig": { -- Gitee