diff --git a/CHANGELOG.md b/CHANGELOG.md index 40cb33607c906d42adc1f62210567d9fca5e66a6..374b1ab64edac5c11f50f257360d51b3f3ddd253 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,6 @@ +## 0.0.2-SNAPSHOT +修改findbugs问题 + + ## 0.0.1-SNAPSHOT ohos 第一个版本,完整实现了原库的全部 api diff --git a/Readme.md b/Readme.md index bced58b2d9cfde969856713e438a0c3b956a9006..9f634dee90a16df2e341027845da86d1c77c47f3 100644 --- a/Readme.md +++ b/Readme.md @@ -30,7 +30,7 @@ allprojects { 2.在entry模块的build.gradle文件中, ``` dependencies { - implementation('com.gitee.chinasoft_ohos:ShadowDrawable:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:ShadowDrawable:0.0.2-SNAPSHOT') ...... } ``` @@ -54,7 +54,7 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -- 0.0.1-SNAPSHOT +- 0.0.2-SNAPSHOT ## 版权和许可信息 ``` diff --git a/entry/src/main/java/com/sxu/shadowdrawabledemo/MyApplication.java b/entry/src/main/java/com/sxu/shadowdrawabledemo/MyApplication.java index f75ba1c9cc65cd04a9ef94ff764a3b36d45d0469..a49219128099a91a8671aaba14aa07b10839e235 100644 --- a/entry/src/main/java/com/sxu/shadowdrawabledemo/MyApplication.java +++ b/entry/src/main/java/com/sxu/shadowdrawabledemo/MyApplication.java @@ -1,3 +1,17 @@ +/* + * Copyright (C) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.sxu.shadowdrawabledemo; import ohos.aafwk.ability.AbilityPackage; diff --git a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/GridExampleSlice.java b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/GridExampleSlice.java index 5888c4da96b68e7a70304f6674ba5bff1cd9f369..daeb92a9ea314956390a3bf6d45a71464099825e 100644 --- a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/GridExampleSlice.java +++ b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/GridExampleSlice.java @@ -1,3 +1,17 @@ +/* + * Copyright (C) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.sxu.shadowdrawabledemo.slice; import com.sxu.shadowdrawable.ShadowDrawable; diff --git a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/ListExampleSlice.java b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/ListExampleSlice.java index a92e501cc9b05bccab0f9c51592f337c81296b5f..33b73871e333bffc3551d49730015c8b0cc42625 100644 --- a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/ListExampleSlice.java +++ b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/ListExampleSlice.java @@ -1,3 +1,17 @@ +/* + * Copyright (C) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.sxu.shadowdrawabledemo.slice; import com.sxu.shadowdrawable.ShadowDrawable; diff --git a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/MainAbilitySlice.java b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/MainAbilitySlice.java index 10e1d0e6d3e6360d911a1a1c3d8dd51038c90e93..b3d6603fdc4b6e3adc9d8a0862e41ddd39abaecd 100644 --- a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/MainAbilitySlice.java +++ b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/MainAbilitySlice.java @@ -1,3 +1,17 @@ +/* + * Copyright (C) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.sxu.shadowdrawabledemo.slice; import com.sxu.shadowdrawable.ShadowDrawable; diff --git a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/PagerExampleSlice.java b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/PagerExampleSlice.java index fe18bc85fdb6b29a191ee00ed58740b820ab2e7e..704decc82eb6502822865ad0c06101876a037b79 100644 --- a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/PagerExampleSlice.java +++ b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/PagerExampleSlice.java @@ -1,3 +1,17 @@ +/* + * Copyright (C) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.sxu.shadowdrawabledemo.slice; import com.sxu.shadowdrawable.ShadowDrawable; diff --git a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/RecycleExampleSlice.java b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/RecycleExampleSlice.java index c857b73dce35c7834f6e307916b8dc2903b4d319..8deb68a25763f2d6d0d94f4898235e2b3293f665 100644 --- a/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/RecycleExampleSlice.java +++ b/entry/src/main/java/com/sxu/shadowdrawabledemo/slice/RecycleExampleSlice.java @@ -1,3 +1,17 @@ +/* + * Copyright (C) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.sxu.shadowdrawabledemo.slice; import com.sxu.shadowdrawable.ShadowDrawable;