From ca3f91edd8eee7fd6554df86d085c67e4303ec8b Mon Sep 17 00:00:00 2001 From: ling990 Date: Wed, 26 Jan 2022 18:02:12 +0800 Subject: [PATCH] modify Signed-off-by: ling990 Signed-off-by: ling990 --- .../audio/audiodecoder/MainAbility.java | 35 ------------------- .../audio/audiodecoder/MyApplication.java | 29 --------------- .../audio/audioencoder/MainAbility.java | 35 ------------------- .../audio/audioencoder/MyApplication.java | 29 --------------- 4 files changed, 128 deletions(-) delete mode 100644 multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MainAbility.java delete mode 100644 multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MyApplication.java delete mode 100644 multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MainAbility.java delete mode 100644 multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MyApplication.java diff --git a/multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MainAbility.java b/multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MainAbility.java deleted file mode 100644 index 686df2cdd..000000000 --- a/multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MainAbility.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * 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 ohos.acts.multimedia.audio.audiodecoder; - - import ohos.ace.ability.AceAbility; - import ohos.aafwk.content.Intent; - -/* - * java MainAbility - */ - - public class MainAbility extends AceAbility { - @Override - public void onStart(Intent intent) { - super.onStart(intent); - } - - @Override - public void onStop() { - super.onStop(); - } - } diff --git a/multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MyApplication.java b/multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MyApplication.java deleted file mode 100644 index dcc6bb38f..000000000 --- a/multimedia/media/media_js_standard/audioDecoder/src/main/java/ohos/acts/multimedia/audio/audiodecoder/MyApplication.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * 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 ohos.acts.multimedia.audio.audiodecoder; - - import ohos.aafwk.ability.AbilityPackage; - -/* - * java MyApplication - */ - - public class MyApplication extends AbilityPackage { - @Override - public void onInitialize() { - super.onInitialize(); - } - } diff --git a/multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MainAbility.java b/multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MainAbility.java deleted file mode 100644 index 1ef127582..000000000 --- a/multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MainAbility.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * 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 ohos.acts.multimedia.audio.audioencoder; - - import ohos.ace.ability.AceAbility; - import ohos.aafwk.content.Intent; - -/* - * java MainAbility - */ - - public class MainAbility extends AceAbility { - @Override - public void onStart(Intent intent) { - super.onStart(intent); - } - - @Override - public void onStop() { - super.onStop(); - } - } diff --git a/multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MyApplication.java b/multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MyApplication.java deleted file mode 100644 index 31c9a8ab2..000000000 --- a/multimedia/media/media_js_standard/audioEncoder/src/main/java/ohos/acts/multimedia/audio/audioencoder/MyApplication.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * 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 ohos.acts.multimedia.audio.audioencoder; - - import ohos.aafwk.ability.AbilityPackage; - -/* - * java MyApplication - */ - - public class MyApplication extends AbilityPackage { - @Override - public void onInitialize() { - super.onInitialize(); - } - } -- GitLab