diff --git a/README_zh.md b/README_zh.md index f5b378bfccfbbd3eaf11486d432d596af33dcda8..a144381634d646cee037846a2b47f48c589fa331 100755 --- a/README_zh.md +++ b/README_zh.md @@ -16,6 +16,7 @@ - [`EtsCommonEvent:`订阅公共事件(eTS)](https://gitee.com/openharmony/app_samples/tree/master/ability/EtsCommonEvent) - [`JsDistributedMusicPlayer:`分布式音乐播放(JS)](https://gitee.com/openharmony/app_samples/tree/master/ability/JsDistributedMusicPlayer) - [`eTSDataAbility:`DataAbility的创建与访问(eTS)](https://gitee.com/openharmony/app_samples/tree/master/abiltiy/eTSDataAbility) + - [`eTSServiceAbility:`ServiceAbility的创建与使用(eTS)](https://gitee.com/openharmony/app_samples/tree/master/ability/eTSServiceAbility) - common - [`AirQuality:`空气质量(JS)](https://gitee.com/openharmony/app_samples/tree/master/common/AirQuality) - [`Clock:`时钟(JS)](https://gitee.com/openharmony/app_samples/tree/master/common/Clock) @@ -23,10 +24,9 @@ - [`ECG:`心率检测(JS)](https://gitee.com/openharmony/app_samples/tree/master/common/ECG) - [`EtsNotification:`通知(eTS)](https://gitee.com/openharmony/app_samples/tree/master/common/EtsNotification) - [`EtsResourceManager:`资源管理器(eTS)](https://gitee.com/openharmony/app_samples/tree/master/common/EtsResourceManager) - - [`eTSXmlTextConvert:`xml文本转换(eTS)](https://gitee.com/openharmony/app_samples/tree/master/common/eTSXmlTextConvert) - [`Flashlight:`手电筒(JS)](https://gitee.com/openharmony/app_samples/tree/master/common/Flashlight) - [`JsHelloWorld:`你好世界(JS)](https://gitee.com/openharmony/app_samples/tree/master/common/JsHelloWorld) - - [`eTSUtilBase64Codec:`Base64编解码(eTS)](https://gitee.com/openharmony/app_samples/tree/master/common/eTSUtilBase64Codec) + - [`eTSPowerManager:`系统电源管理(eTS)](https://gitee.com/openharmony/app_samples/tree/master/common/eTSPowerManager) - data - [`eTSFileIo:`文件管理(eTS)](https://gitee.com/openharmony/app_samples/tree/master/data/eTSFileIo) - [`eTSKvStore:`分布式数据库(eTS)](https://gitee.com/openharmony/app_samples/tree/master/data/eTSKvStore) @@ -41,7 +41,8 @@ - security - [`JsDotTest:`测试打点(JS)](https://gitee.com/openharmony/app_samples/tree/master/security/JsDotTest) - Telephony - - [`eTSCall:`电话服务-拨打电话(eTS)](https://gitee.com/openharmony/app_samples/tree/master/Telephony/eTSCall) + - [`eTSCall:`电话服务-拨打电话(eTS)](https://gitee.com/openharmony/app_samples/tree/master/Telephony/eTSCall) + - [`eTSRadioTech:`电话服务-网络搜索(eTS)](https://gitee.com/openharmony/app_samples/tree/master/Telephony/eTSRadioTech) - thread - [`JsWorker:`启动一个worker(JS)](https://gitee.com/openharmony/app_samples/tree/master/thread/JsWorker) - CompleteApps @@ -85,9 +86,12 @@ - [`Toolbar:`工具栏(JS)](https://gitee.com/openharmony/app_samples/tree/master/UI/Toolbar) - [`chart:`图表组件(JS)](https://gitee.com/openharmony/app_samples/tree/master/UI/chart) - Util + - [`eTSUtilBase64Codec:`Base64编解码(eTS)](https://gitee.com/openharmony/app_samples/tree/master/common/eTSUtilBase64Codec) - [`eTSUtilScope:`范围判断(eTS)](https://gitee.com/openharmony/app_samples/tree/master/Util/eTSUtilScope) - [`eTSUtilLruBuffer:`缓冲区(eTS)](https://gitee.com/openharmony/app_samples/tree/master/Util/eTSUtilLruBuffer) - [`eTSUtilRationalNumber:`有理数(eTS)](https://gitee.com/openharmony/app_samples/tree/master/Util/eTSUtilRationalNumber) + - [`eTSUtilTypeCheck:`内置对象类型检查(eTS)](https://gitee.com/openharmony/app_samples/tree/master/Util/eTSUtilTypeCheck) + - [`eTSXmlTextConvert:`xml文本转换(eTS)](https://gitee.com/openharmony/app_samples/tree/master/common/eTSXmlTextConvert) ## 使用说明 diff --git a/data/eTSUtilBase64Codec/README.md b/Util/eTSUtilBase64Codec/README.md similarity index 100% rename from data/eTSUtilBase64Codec/README.md rename to Util/eTSUtilBase64Codec/README.md diff --git a/data/eTSUtilBase64Codec/build.gradle b/Util/eTSUtilBase64Codec/build.gradle similarity index 100% rename from data/eTSUtilBase64Codec/build.gradle rename to Util/eTSUtilBase64Codec/build.gradle diff --git a/data/eTSUtilBase64Codec/entry/build.gradle b/Util/eTSUtilBase64Codec/entry/build.gradle similarity index 100% rename from data/eTSUtilBase64Codec/entry/build.gradle rename to Util/eTSUtilBase64Codec/entry/build.gradle diff --git a/data/eTSUtilBase64Codec/entry/src/main/config.json b/Util/eTSUtilBase64Codec/entry/src/main/config.json similarity index 100% rename from data/eTSUtilBase64Codec/entry/src/main/config.json rename to Util/eTSUtilBase64Codec/entry/src/main/config.json diff --git a/common/eTSXmlTextConvert/entry/src/main/ets/MainAbility/app.ets b/Util/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/app.ets similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/ets/MainAbility/app.ets rename to Util/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/app.ets diff --git a/data/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/pages/index.ets b/Util/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/pages/index.ets similarity index 100% rename from data/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/pages/index.ets rename to Util/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/pages/index.ets diff --git a/data/eTSUtilBase64Codec/entry/src/main/resources/base/element/string.json b/Util/eTSUtilBase64Codec/entry/src/main/resources/base/element/string.json similarity index 100% rename from data/eTSUtilBase64Codec/entry/src/main/resources/base/element/string.json rename to Util/eTSUtilBase64Codec/entry/src/main/resources/base/element/string.json diff --git a/common/eTSXmlTextConvert/entry/src/main/resources/base/media/icon.png b/Util/eTSUtilBase64Codec/entry/src/main/resources/base/media/icon.png similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/resources/base/media/icon.png rename to Util/eTSUtilBase64Codec/entry/src/main/resources/base/media/icon.png diff --git a/data/eTSUtilBase64Codec/entry/src/main/resources/en/element/string.json b/Util/eTSUtilBase64Codec/entry/src/main/resources/en/element/string.json similarity index 100% rename from data/eTSUtilBase64Codec/entry/src/main/resources/en/element/string.json rename to Util/eTSUtilBase64Codec/entry/src/main/resources/en/element/string.json diff --git a/data/eTSUtilBase64Codec/entry/src/main/resources/zh/element/string.json b/Util/eTSUtilBase64Codec/entry/src/main/resources/zh/element/string.json similarity index 100% rename from data/eTSUtilBase64Codec/entry/src/main/resources/zh/element/string.json rename to Util/eTSUtilBase64Codec/entry/src/main/resources/zh/element/string.json diff --git a/data/eTSUtilBase64Codec/screenshots/device/base.png b/Util/eTSUtilBase64Codec/screenshots/device/base.png similarity index 100% rename from data/eTSUtilBase64Codec/screenshots/device/base.png rename to Util/eTSUtilBase64Codec/screenshots/device/base.png diff --git a/common/eTSXmlTextConvert/settings.gradle b/Util/eTSUtilBase64Codec/settings.gradle similarity index 100% rename from common/eTSXmlTextConvert/settings.gradle rename to Util/eTSUtilBase64Codec/settings.gradle diff --git a/common/eTSXmlTextConvert/README_zh.md b/Util/eTSXmlTextConvert/README_zh.md similarity index 100% rename from common/eTSXmlTextConvert/README_zh.md rename to Util/eTSXmlTextConvert/README_zh.md diff --git a/common/eTSXmlTextConvert/build.gradle b/Util/eTSXmlTextConvert/build.gradle similarity index 100% rename from common/eTSXmlTextConvert/build.gradle rename to Util/eTSXmlTextConvert/build.gradle diff --git a/common/eTSXmlTextConvert/entry/build.gradle b/Util/eTSXmlTextConvert/entry/build.gradle similarity index 100% rename from common/eTSXmlTextConvert/entry/build.gradle rename to Util/eTSXmlTextConvert/entry/build.gradle diff --git a/common/eTSXmlTextConvert/entry/src/main/config.json b/Util/eTSXmlTextConvert/entry/src/main/config.json similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/config.json rename to Util/eTSXmlTextConvert/entry/src/main/config.json diff --git a/data/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/app.ets b/Util/eTSXmlTextConvert/entry/src/main/ets/MainAbility/app.ets similarity index 100% rename from data/eTSUtilBase64Codec/entry/src/main/ets/MainAbility/app.ets rename to Util/eTSXmlTextConvert/entry/src/main/ets/MainAbility/app.ets diff --git a/common/eTSXmlTextConvert/entry/src/main/ets/MainAbility/common/selectOption.ets b/Util/eTSXmlTextConvert/entry/src/main/ets/MainAbility/common/selectOption.ets similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/ets/MainAbility/common/selectOption.ets rename to Util/eTSXmlTextConvert/entry/src/main/ets/MainAbility/common/selectOption.ets diff --git a/common/eTSXmlTextConvert/entry/src/main/ets/MainAbility/pages/index.ets b/Util/eTSXmlTextConvert/entry/src/main/ets/MainAbility/pages/index.ets similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/ets/MainAbility/pages/index.ets rename to Util/eTSXmlTextConvert/entry/src/main/ets/MainAbility/pages/index.ets diff --git a/common/eTSXmlTextConvert/entry/src/main/resources/base/element/string.json b/Util/eTSXmlTextConvert/entry/src/main/resources/base/element/string.json similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/resources/base/element/string.json rename to Util/eTSXmlTextConvert/entry/src/main/resources/base/element/string.json diff --git a/data/eTSUtilBase64Codec/entry/src/main/resources/base/media/icon.png b/Util/eTSXmlTextConvert/entry/src/main/resources/base/media/icon.png similarity index 100% rename from data/eTSUtilBase64Codec/entry/src/main/resources/base/media/icon.png rename to Util/eTSXmlTextConvert/entry/src/main/resources/base/media/icon.png diff --git a/common/eTSXmlTextConvert/entry/src/main/resources/en/element/string.json b/Util/eTSXmlTextConvert/entry/src/main/resources/en/element/string.json similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/resources/en/element/string.json rename to Util/eTSXmlTextConvert/entry/src/main/resources/en/element/string.json diff --git a/common/eTSXmlTextConvert/entry/src/main/resources/zh/element/string.json b/Util/eTSXmlTextConvert/entry/src/main/resources/zh/element/string.json similarity index 100% rename from common/eTSXmlTextConvert/entry/src/main/resources/zh/element/string.json rename to Util/eTSXmlTextConvert/entry/src/main/resources/zh/element/string.json diff --git a/common/eTSXmlTextConvert/screenshots/devices/main.png b/Util/eTSXmlTextConvert/screenshots/devices/main.png similarity index 100% rename from common/eTSXmlTextConvert/screenshots/devices/main.png rename to Util/eTSXmlTextConvert/screenshots/devices/main.png diff --git a/data/eTSUtilBase64Codec/settings.gradle b/Util/eTSXmlTextConvert/settings.gradle similarity index 100% rename from data/eTSUtilBase64Codec/settings.gradle rename to Util/eTSXmlTextConvert/settings.gradle