diff --git a/CHANGELOG.md b/CHANGELOG.md index 343e629288454ed7f12fc71ca3a90931acc97372..125a85d16e7eb5bbba1fa3151ae98eafc92c79fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ +## 0.0.2-SNAPSHOT +修改findbugs问题 + ## 0.0.1-SNAPSHOT ohos 第一个版本,完整实现了原库的全部 api - - diff --git a/README.md b/README.md index 98d3ced0bb75a20cf37c6e1b728cae0eb9ea2b3d..711c749fc1c96d55ea61fbce22c6f369bdd5590b 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,11 @@ allprojects { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar', '*.har']) - implementation('com.gitee.chinasoft_ohos:annotation:0.0.1-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:app_module:0.0.1-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:compiler:0.0.1-SNAPSHOT') - annotationProcessor('com.gitee.chinasoft_ohos:compiler:0.0.1-SNAPSHOT') - implementation('com.gitee.chinasoft_ohos:activityrouter:0.0.1-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:annotation:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:app_module:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:compiler:0.0.2-SNAPSHOT') + annotationProcessor('com.gitee.chinasoft_ohos:compiler:0.0.2-SNAPSHOT') + implementation('com.gitee.chinasoft_ohos:activityrouter:0.0.2-SNAPSHOT') …… } ``` @@ -148,7 +148,7 @@ CloudTest代码测试无异常 当前版本demo功能与原组件基本无差异 ## 版本迭代 -- 0.0.1-SNAPSHOT +- 0.0.2-SNAPSHOT ## 版权和许可信息 - Apache License 2.0 \ No newline at end of file diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/MainAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/MainAbility.java index eaebe99ef1f2297d49d63d04d3304a68349e93af..94b853866d3202e4ca84abf1d0f9e4f5563e5cae 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/MainAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/MainAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter; import com.github.mzule.abilityrouter.annotation.Router; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/DumpExtrasAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/DumpExtrasAbility.java index 0a3b680bd52185439f8efc3f57b99827c857e1b1..3119f6deeab51a86bd12f372fdb80679997dc924 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/DumpExtrasAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/DumpExtrasAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.ResourceTable; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/ErrorStackAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/ErrorStackAbility.java index 78bcc1b314b0ca82e184a25eaefb38759b4b38ad..40745dee97106b62235a813d9a459c5308d16653 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/ErrorStackAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/ErrorStackAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.ResourceTable; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/HomeAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/HomeAbility.java index 5297e7596882bf6015336864ab8dde7f94b829dd..70d466eba5d56ed79075bd1ca0151d2bbb30238a 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/HomeAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/HomeAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.annotation.Router; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/HostAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/HostAbility.java index 5660ad94dbe05314f56aa98fe56f586003baf3c1..7deb2dc783acd0d0ae7585307a5e49dbeb88155b 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/HostAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/HostAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.annotation.Router; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/LaunchAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/LaunchAbility.java index 9847e25416d9a4e48894acb481efb176ecabf563..8a8faf28000a640aa0238a6f36c0e65f655e951c 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/LaunchAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/LaunchAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.Constant; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/NonUIActions.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/NonUIActions.java index 3942e36caf43eb4d6e6ce11fc13c7213ed5b8b31..0f668b58b43dffd9cce586c08825e0dcf17db8d3 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/NonUIActions.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/NonUIActions.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.annotation.Router; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/NotFoundAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/NotFoundAbility.java index c7af4fbe54e62ad1e996c828d786cf75d09815d6..36c2e4b14ea4aab67b19cbaa628c63f85c8fba21 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/NotFoundAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/NotFoundAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.ResourceTable; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserAbility.java index cc5e772b8184ea085eccaa792bcd452131d09444..e48ee45e4f0d395cb6b7ab129432a9b41a45481b 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.annotation.Router; diff --git a/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserCollectionAbility.java b/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserCollectionAbility.java index 8829a339f926c2f59dbef5c891e64731b201c2d2..e2121773573a53c6f46914cc0f35685d96e5ed80 100644 --- a/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserCollectionAbility.java +++ b/entry/src/main/java/com/github/mzule/abilityrouter/slice/UserCollectionAbility.java @@ -1,17 +1,3 @@ -/* - * 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.github.mzule.abilityrouter.slice; import com.github.mzule.abilityrouter.annotation.Router;