From e276a493c666f9ba60f7a4f34e5e7efbaf8368b7 Mon Sep 17 00:00:00 2001 From: kl <2352009235@qq.com> Date: Thu, 26 Sep 2024 20:20:01 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E5=9B=BD=E9=99=85=E5=8C=96=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +- .../main/ets/entryability/EntryAbility.ets | 1 + entry/src/main/ets/pages/ForEachListPage.ets | 2 +- entry/src/main/ets/pages/Index.ets | 54 +- .../main/ets/pages/LazyForEachListPage.ets | 2 +- .../main/resources/base/element/color.json | 2 +- .../src/main/resources/rawfile/article10.json | 100 +- .../main/resources/rawfile/article100.json | 1000 +- .../main/resources/rawfile/article1000.json | 10000 ++++++++-------- screenshots/device/ForEach.png | Bin 0 -> 110659 bytes screenshots/device/LazyForEach.png | Bin 0 -> 112403 bytes 11 files changed, 5593 insertions(+), 5572 deletions(-) create mode 100644 screenshots/device/ForEach.png create mode 100644 screenshots/device/LazyForEach.png diff --git a/README.md b/README.md index 18576b4..65554d7 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,9 @@ 本示例分别使用ForEach与LazyForEach实现了长列表,并在LazyForEach懒加载的基础上实现了缓存列表项与组件复用,旨在不同大小的数据下,对比ForEach与LazyForEach的性能,包括完全显示所用时间、丢帧率等性能指标。 ### 效果预览: -![image](screenshots/device/list_optimization.gif) +| ForEach页面 | LazyForEach页面 | +|-------------------------------------|-----------------------------------------| +| ![](screenshots/device/ForEach.png) | ![](screenshots/device/LazyForEach.png) | 使用说明: diff --git a/entry/src/main/ets/entryability/EntryAbility.ets b/entry/src/main/ets/entryability/EntryAbility.ets index 90cb896..5aab374 100644 --- a/entry/src/main/ets/entryability/EntryAbility.ets +++ b/entry/src/main/ets/entryability/EntryAbility.ets @@ -74,6 +74,7 @@ function requestFullScreen(windowStage: window.WindowStage, context: Context): v getDeviceSize(context, area); let promise: Promise = windowClass.setWindowLayoutFullScreen(isLayoutFullScreen); promise.then(() => { + windowStage.getMainWindowSync().setWindowBackgroundColor('#F1F3F5'); Logger.info(TAG, 'Succeeded in setting the window layout to full-screen mode.'); }).catch((err: BusinessError) => { Logger.error(TAG, 'Failed to set the window layout to full-screen mode. Cause:' + JSON.stringify(err)); diff --git a/entry/src/main/ets/pages/ForEachListPage.ets b/entry/src/main/ets/pages/ForEachListPage.ets index 05e8f2b..ace5838 100644 --- a/entry/src/main/ets/pages/ForEachListPage.ets +++ b/entry/src/main/ets/pages/ForEachListPage.ets @@ -83,7 +83,7 @@ export struct ForEachListPage { } .width(Constants.FULL_SCREEN) .height(Constants.FULL_SCREEN) - .margin({ left: 10, right: 10 }) + .padding({ left: 10, right: 10 }) .layoutWeight(1) } .backgroundColor($r('app.color.text_background')) diff --git a/entry/src/main/ets/pages/Index.ets b/entry/src/main/ets/pages/Index.ets index d17f8e8..4151245 100644 --- a/entry/src/main/ets/pages/Index.ets +++ b/entry/src/main/ets/pages/Index.ets @@ -1,28 +1,46 @@ -import { router } from '@kit.ArkUI' - +import { ForEachListPage } from './ForEachListPage'; +import { LazyForEachListPage } from './LazyForEachListPage'; @Entry @Component struct Index { + @Provide('NavPathStack') pageStack: NavPathStack = new NavPathStack(); + + @Builder + PagesMap(name: string, param: object) { + NavDestination() { + if (name === 'ForEachListPage') { + ForEachListPage() + } else if (name === 'LazyForEachListPage') { + LazyForEachListPage() + } + } + .hideTitleBar(true) + } build() { - Row() { - Column() { - Button('ForEach') - .width(200) - .margin(10) - .onClick(() => { - router.pushUrl({ url: 'pages/ForEachListPage' }) - }) - Button('LazyForEach') - .width(200) - .margin(10) - .onClick(() => { - router.pushUrl({ url: 'pages/LazyForEachListPage' }) - }) + Navigation(this.pageStack) { + Row() { + Column() { + Button('ForEach') + .width(200) + .margin(10) + .onClick(() => { + this.pageStack.pushPathByName('ForEachListPage', ''); + }) + Button('LazyForEach') + .width(200) + .margin(10) + .onClick(() => { + this.pageStack.pushPathByName('LazyForEachListPage', ''); + }) + } + .width('100%') } - .width('100%') + .height('100%') } - .height('100%') + .hideTitleBar(true) + .mode(NavigationMode.Stack) + .navDestination(this.PagesMap) } } \ No newline at end of file diff --git a/entry/src/main/ets/pages/LazyForEachListPage.ets b/entry/src/main/ets/pages/LazyForEachListPage.ets index 6b0f8b6..2a9c588 100644 --- a/entry/src/main/ets/pages/LazyForEachListPage.ets +++ b/entry/src/main/ets/pages/LazyForEachListPage.ets @@ -90,7 +90,7 @@ export struct LazyForEachListPage { } .width(Constants.FULL_SCREEN) .height(Constants.FULL_SCREEN) - .margin({ left: 10, right: 10 }) + .padding({ left: 10, right: 10 }) .layoutWeight(1) // Optimization method 2:Use cachedCount .cachedCount(3); diff --git a/entry/src/main/resources/base/element/color.json b/entry/src/main/resources/base/element/color.json index 2698d10..88bbf16 100644 --- a/entry/src/main/resources/base/element/color.json +++ b/entry/src/main/resources/base/element/color.json @@ -6,7 +6,7 @@ }, { "name": "text_background", - "value": "#FAFAFA" + "value": "#F1F3F5" } ] } \ No newline at end of file diff --git a/entry/src/main/resources/rawfile/article10.json b/entry/src/main/resources/rawfile/article10.json index 5ed3d0e..b5fda04 100644 --- a/entry/src/main/resources/rawfile/article10.json +++ b/entry/src/main/resources/rawfile/article10.json @@ -1,11 +1,11 @@ [ { "id": 0, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14,7 +14,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -22,11 +22,11 @@ }, { "id": 1, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -35,7 +35,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -43,11 +43,11 @@ }, { "id": 2, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -56,7 +56,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -64,11 +64,11 @@ }, { "id": 3, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -77,7 +77,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -85,11 +85,11 @@ }, { "id": 4, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -98,7 +98,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -106,11 +106,11 @@ }, { "id": 5, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -119,7 +119,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -127,11 +127,11 @@ }, { "id": 6, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -140,7 +140,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -148,11 +148,11 @@ }, { "id": 7, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -161,7 +161,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -169,11 +169,11 @@ }, { "id": 8, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -182,7 +182,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -190,11 +190,11 @@ }, { "id": 9, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -203,7 +203,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, diff --git a/entry/src/main/resources/rawfile/article100.json b/entry/src/main/resources/rawfile/article100.json index eadf234..2e5e242 100644 --- a/entry/src/main/resources/rawfile/article100.json +++ b/entry/src/main/resources/rawfile/article100.json @@ -1,11 +1,11 @@ [ { "id": 0, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14,7 +14,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -22,11 +22,11 @@ }, { "id": 1, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -35,7 +35,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -43,11 +43,11 @@ }, { "id": 2, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -56,7 +56,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -64,11 +64,11 @@ }, { "id": 3, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -77,7 +77,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -85,11 +85,11 @@ }, { "id": 4, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -98,7 +98,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -106,11 +106,11 @@ }, { "id": 5, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -119,7 +119,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -127,11 +127,11 @@ }, { "id": 6, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -140,7 +140,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -148,11 +148,11 @@ }, { "id": 7, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -161,7 +161,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -169,11 +169,11 @@ }, { "id": 8, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -182,7 +182,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -190,11 +190,11 @@ }, { "id": 9, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -203,7 +203,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -211,11 +211,11 @@ }, { "id": 10, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -224,7 +224,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -232,11 +232,11 @@ }, { "id": 11, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -245,7 +245,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -253,11 +253,11 @@ }, { "id": 12, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -266,7 +266,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -274,11 +274,11 @@ }, { "id": 13, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -287,7 +287,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -295,11 +295,11 @@ }, { "id": 14, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -308,7 +308,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -316,11 +316,11 @@ }, { "id": 15, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -329,7 +329,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -337,11 +337,11 @@ }, { "id": 16, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -350,7 +350,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -358,11 +358,11 @@ }, { "id": 17, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -371,7 +371,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -379,11 +379,11 @@ }, { "id": 18, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -392,7 +392,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -400,11 +400,11 @@ }, { "id": 19, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -413,7 +413,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -421,11 +421,11 @@ }, { "id": 20, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -434,7 +434,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -442,11 +442,11 @@ }, { "id": 21, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -455,7 +455,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -463,11 +463,11 @@ }, { "id": 22, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -476,7 +476,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -484,11 +484,11 @@ }, { "id": 23, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -497,7 +497,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -505,11 +505,11 @@ }, { "id": 24, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -518,7 +518,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -526,11 +526,11 @@ }, { "id": 25, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -539,7 +539,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -547,11 +547,11 @@ }, { "id": 26, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -560,7 +560,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -568,11 +568,11 @@ }, { "id": 27, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -581,7 +581,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -589,11 +589,11 @@ }, { "id": 28, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -602,7 +602,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -610,11 +610,11 @@ }, { "id": 29, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -623,7 +623,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -631,11 +631,11 @@ }, { "id": 30, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -644,7 +644,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -652,11 +652,11 @@ }, { "id": 31, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -665,7 +665,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -673,11 +673,11 @@ }, { "id": 32, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -686,7 +686,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -694,11 +694,11 @@ }, { "id": 33, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -707,7 +707,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -715,11 +715,11 @@ }, { "id": 34, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -728,7 +728,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -736,11 +736,11 @@ }, { "id": 35, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -749,7 +749,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -757,11 +757,11 @@ }, { "id": 36, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -770,7 +770,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -778,11 +778,11 @@ }, { "id": 37, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -791,7 +791,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -799,11 +799,11 @@ }, { "id": 38, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -812,7 +812,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -820,11 +820,11 @@ }, { "id": 39, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -833,7 +833,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -841,11 +841,11 @@ }, { "id": 40, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -854,7 +854,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -862,11 +862,11 @@ }, { "id": 41, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -875,7 +875,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -883,11 +883,11 @@ }, { "id": 42, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -896,7 +896,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -904,11 +904,11 @@ }, { "id": 43, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -917,7 +917,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -925,11 +925,11 @@ }, { "id": 44, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -938,7 +938,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -946,11 +946,11 @@ }, { "id": 45, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -959,7 +959,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -967,11 +967,11 @@ }, { "id": 46, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -980,7 +980,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -988,11 +988,11 @@ }, { "id": 47, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1001,7 +1001,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1009,11 +1009,11 @@ }, { "id": 48, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1022,7 +1022,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1030,11 +1030,11 @@ }, { "id": 49, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1043,7 +1043,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1051,11 +1051,11 @@ }, { "id": 50, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1064,7 +1064,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1072,11 +1072,11 @@ }, { "id": 51, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1085,7 +1085,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1093,11 +1093,11 @@ }, { "id": 52, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1106,7 +1106,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1114,11 +1114,11 @@ }, { "id": 53, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1127,7 +1127,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1135,11 +1135,11 @@ }, { "id": 54, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1148,7 +1148,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1156,11 +1156,11 @@ }, { "id": 55, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1169,7 +1169,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1177,11 +1177,11 @@ }, { "id": 56, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1190,7 +1190,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1198,11 +1198,11 @@ }, { "id": 57, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1211,7 +1211,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1219,11 +1219,11 @@ }, { "id": 58, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1232,7 +1232,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1240,11 +1240,11 @@ }, { "id": 59, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1253,7 +1253,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1261,11 +1261,11 @@ }, { "id": 60, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1274,7 +1274,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1282,11 +1282,11 @@ }, { "id": 61, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1295,7 +1295,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1303,11 +1303,11 @@ }, { "id": 62, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1316,7 +1316,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1324,11 +1324,11 @@ }, { "id": 63, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1337,7 +1337,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1345,11 +1345,11 @@ }, { "id": 64, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1358,7 +1358,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1366,11 +1366,11 @@ }, { "id": 65, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1379,7 +1379,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1387,11 +1387,11 @@ }, { "id": 66, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1400,7 +1400,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1408,11 +1408,11 @@ }, { "id": 67, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1421,7 +1421,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1429,11 +1429,11 @@ }, { "id": 68, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1442,7 +1442,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1450,11 +1450,11 @@ }, { "id": 69, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1463,7 +1463,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1471,11 +1471,11 @@ }, { "id": 70, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1484,7 +1484,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1492,11 +1492,11 @@ }, { "id": 71, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1505,7 +1505,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1513,11 +1513,11 @@ }, { "id": 72, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1526,7 +1526,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1534,11 +1534,11 @@ }, { "id": 73, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1547,7 +1547,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1555,11 +1555,11 @@ }, { "id": 74, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1568,7 +1568,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1576,11 +1576,11 @@ }, { "id": 75, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1589,7 +1589,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1597,11 +1597,11 @@ }, { "id": 76, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1610,7 +1610,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1618,11 +1618,11 @@ }, { "id": 77, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1631,7 +1631,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1639,11 +1639,11 @@ }, { "id": 78, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1652,7 +1652,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1660,11 +1660,11 @@ }, { "id": 79, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1673,7 +1673,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1681,11 +1681,11 @@ }, { "id": 80, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1694,7 +1694,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1702,11 +1702,11 @@ }, { "id": 81, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1715,7 +1715,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1723,11 +1723,11 @@ }, { "id": 82, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1736,7 +1736,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1744,11 +1744,11 @@ }, { "id": 83, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1757,7 +1757,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1765,11 +1765,11 @@ }, { "id": 84, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1778,7 +1778,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1786,11 +1786,11 @@ }, { "id": 85, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1799,7 +1799,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1807,11 +1807,11 @@ }, { "id": 86, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1820,7 +1820,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1828,11 +1828,11 @@ }, { "id": 87, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1841,7 +1841,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1849,11 +1849,11 @@ }, { "id": 88, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1862,7 +1862,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1870,11 +1870,11 @@ }, { "id": 89, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1883,7 +1883,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1891,11 +1891,11 @@ }, { "id": 90, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1904,7 +1904,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1912,11 +1912,11 @@ }, { "id": 91, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1925,7 +1925,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1933,11 +1933,11 @@ }, { "id": 92, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1946,7 +1946,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1954,11 +1954,11 @@ }, { "id": 93, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1967,7 +1967,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1975,11 +1975,11 @@ }, { "id": 94, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1988,7 +1988,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1996,11 +1996,11 @@ }, { "id": 95, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2009,7 +2009,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2017,11 +2017,11 @@ }, { "id": 96, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2030,7 +2030,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2038,11 +2038,11 @@ }, { "id": 97, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2051,7 +2051,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2059,11 +2059,11 @@ }, { "id": 98, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2072,7 +2072,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2080,11 +2080,11 @@ }, { "id": 99, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2093,7 +2093,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, diff --git a/entry/src/main/resources/rawfile/article1000.json b/entry/src/main/resources/rawfile/article1000.json index d9baead..329c3a4 100644 --- a/entry/src/main/resources/rawfile/article1000.json +++ b/entry/src/main/resources/rawfile/article1000.json @@ -1,11 +1,11 @@ [ { "id": 0, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14,7 +14,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -22,11 +22,11 @@ }, { "id": 1, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -35,7 +35,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -43,11 +43,11 @@ }, { "id": 2, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -56,7 +56,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -64,11 +64,11 @@ }, { "id": 3, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -77,7 +77,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -85,11 +85,11 @@ }, { "id": 4, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -98,7 +98,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -106,11 +106,11 @@ }, { "id": 5, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -119,7 +119,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -127,11 +127,11 @@ }, { "id": 6, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -140,7 +140,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -148,11 +148,11 @@ }, { "id": 7, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -161,7 +161,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -169,11 +169,11 @@ }, { "id": 8, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -182,7 +182,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -190,11 +190,11 @@ }, { "id": 9, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -203,7 +203,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -211,11 +211,11 @@ }, { "id": 10, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -224,7 +224,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -232,11 +232,11 @@ }, { "id": 11, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -245,7 +245,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -253,11 +253,11 @@ }, { "id": 12, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -266,7 +266,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -274,11 +274,11 @@ }, { "id": 13, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -287,7 +287,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -295,11 +295,11 @@ }, { "id": 14, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -308,7 +308,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -316,11 +316,11 @@ }, { "id": 15, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -329,7 +329,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -337,11 +337,11 @@ }, { "id": 16, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -350,7 +350,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -358,11 +358,11 @@ }, { "id": 17, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -371,7 +371,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -379,11 +379,11 @@ }, { "id": 18, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -392,7 +392,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -400,11 +400,11 @@ }, { "id": 19, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -413,7 +413,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -421,11 +421,11 @@ }, { "id": 20, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -434,7 +434,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -442,11 +442,11 @@ }, { "id": 21, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -455,7 +455,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -463,11 +463,11 @@ }, { "id": 22, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -476,7 +476,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -484,11 +484,11 @@ }, { "id": 23, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -497,7 +497,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -505,11 +505,11 @@ }, { "id": 24, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -518,7 +518,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -526,11 +526,11 @@ }, { "id": 25, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -539,7 +539,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -547,11 +547,11 @@ }, { "id": 26, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -560,7 +560,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -568,11 +568,11 @@ }, { "id": 27, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -581,7 +581,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -589,11 +589,11 @@ }, { "id": 28, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -602,7 +602,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -610,11 +610,11 @@ }, { "id": 29, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -623,7 +623,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -631,11 +631,11 @@ }, { "id": 30, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -644,7 +644,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -652,11 +652,11 @@ }, { "id": 31, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -665,7 +665,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -673,11 +673,11 @@ }, { "id": 32, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -686,7 +686,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -694,11 +694,11 @@ }, { "id": 33, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -707,7 +707,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -715,11 +715,11 @@ }, { "id": 34, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -728,7 +728,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -736,11 +736,11 @@ }, { "id": 35, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -749,7 +749,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -757,11 +757,11 @@ }, { "id": 36, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -770,7 +770,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -778,11 +778,11 @@ }, { "id": 37, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -791,7 +791,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -799,11 +799,11 @@ }, { "id": 38, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -812,7 +812,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -820,11 +820,11 @@ }, { "id": 39, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -833,7 +833,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -841,11 +841,11 @@ }, { "id": 40, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -854,7 +854,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -862,11 +862,11 @@ }, { "id": 41, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -875,7 +875,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -883,11 +883,11 @@ }, { "id": 42, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -896,7 +896,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -904,11 +904,11 @@ }, { "id": 43, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -917,7 +917,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -925,11 +925,11 @@ }, { "id": 44, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -938,7 +938,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -946,11 +946,11 @@ }, { "id": 45, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -959,7 +959,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -967,11 +967,11 @@ }, { "id": 46, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -980,7 +980,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -988,11 +988,11 @@ }, { "id": 47, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1001,7 +1001,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1009,11 +1009,11 @@ }, { "id": 48, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1022,7 +1022,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1030,11 +1030,11 @@ }, { "id": 49, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1043,7 +1043,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1051,11 +1051,11 @@ }, { "id": 50, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1064,7 +1064,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1072,11 +1072,11 @@ }, { "id": 51, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1085,7 +1085,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1093,11 +1093,11 @@ }, { "id": 52, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1106,7 +1106,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1114,11 +1114,11 @@ }, { "id": 53, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1127,7 +1127,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1135,11 +1135,11 @@ }, { "id": 54, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1148,7 +1148,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1156,11 +1156,11 @@ }, { "id": 55, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1169,7 +1169,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1177,11 +1177,11 @@ }, { "id": 56, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1190,7 +1190,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1198,11 +1198,11 @@ }, { "id": 57, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1211,7 +1211,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1219,11 +1219,11 @@ }, { "id": 58, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1232,7 +1232,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1240,11 +1240,11 @@ }, { "id": 59, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1253,7 +1253,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1261,11 +1261,11 @@ }, { "id": 60, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1274,7 +1274,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1282,11 +1282,11 @@ }, { "id": 61, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1295,7 +1295,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1303,11 +1303,11 @@ }, { "id": 62, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1316,7 +1316,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1324,11 +1324,11 @@ }, { "id": 63, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1337,7 +1337,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1345,11 +1345,11 @@ }, { "id": 64, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1358,7 +1358,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1366,11 +1366,11 @@ }, { "id": 65, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1379,7 +1379,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1387,11 +1387,11 @@ }, { "id": 66, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1400,7 +1400,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1408,11 +1408,11 @@ }, { "id": 67, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1421,7 +1421,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1429,11 +1429,11 @@ }, { "id": 68, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1442,7 +1442,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1450,11 +1450,11 @@ }, { "id": 69, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1463,7 +1463,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1471,11 +1471,11 @@ }, { "id": 70, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1484,7 +1484,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1492,11 +1492,11 @@ }, { "id": 71, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1505,7 +1505,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1513,11 +1513,11 @@ }, { "id": 72, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1526,7 +1526,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1534,11 +1534,11 @@ }, { "id": 73, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1547,7 +1547,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1555,11 +1555,11 @@ }, { "id": 74, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1568,7 +1568,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1576,11 +1576,11 @@ }, { "id": 75, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1589,7 +1589,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1597,11 +1597,11 @@ }, { "id": 76, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1610,7 +1610,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1618,11 +1618,11 @@ }, { "id": 77, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1631,7 +1631,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1639,11 +1639,11 @@ }, { "id": 78, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1652,7 +1652,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1660,11 +1660,11 @@ }, { "id": 79, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1673,7 +1673,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1681,11 +1681,11 @@ }, { "id": 80, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1694,7 +1694,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1702,11 +1702,11 @@ }, { "id": 81, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1715,7 +1715,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1723,11 +1723,11 @@ }, { "id": 82, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1736,7 +1736,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1744,11 +1744,11 @@ }, { "id": 83, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1757,7 +1757,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1765,11 +1765,11 @@ }, { "id": 84, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1778,7 +1778,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1786,11 +1786,11 @@ }, { "id": 85, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1799,7 +1799,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1807,11 +1807,11 @@ }, { "id": 86, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1820,7 +1820,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1828,11 +1828,11 @@ }, { "id": 87, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1841,7 +1841,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1849,11 +1849,11 @@ }, { "id": 88, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1862,7 +1862,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1870,11 +1870,11 @@ }, { "id": 89, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1883,7 +1883,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1891,11 +1891,11 @@ }, { "id": 90, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1904,7 +1904,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1912,11 +1912,11 @@ }, { "id": 91, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1925,7 +1925,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1933,11 +1933,11 @@ }, { "id": 92, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1946,7 +1946,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1954,11 +1954,11 @@ }, { "id": 93, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1967,7 +1967,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1975,11 +1975,11 @@ }, { "id": 94, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -1988,7 +1988,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -1996,11 +1996,11 @@ }, { "id": 95, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2009,7 +2009,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2017,11 +2017,11 @@ }, { "id": 96, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2030,7 +2030,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2038,11 +2038,11 @@ }, { "id": 97, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2051,7 +2051,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2059,11 +2059,11 @@ }, { "id": 98, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2072,7 +2072,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2080,11 +2080,11 @@ }, { "id": 99, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2093,7 +2093,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2101,11 +2101,11 @@ }, { "id": 100, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2114,7 +2114,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2122,11 +2122,11 @@ }, { "id": 101, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2135,7 +2135,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2143,11 +2143,11 @@ }, { "id": 102, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2156,7 +2156,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2164,11 +2164,11 @@ }, { "id": 103, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2177,7 +2177,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2185,11 +2185,11 @@ }, { "id": 104, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2198,7 +2198,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2206,11 +2206,11 @@ }, { "id": 105, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2219,7 +2219,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2227,11 +2227,11 @@ }, { "id": 106, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2240,7 +2240,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2248,11 +2248,11 @@ }, { "id": 107, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2261,7 +2261,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2269,11 +2269,11 @@ }, { "id": 108, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2282,7 +2282,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2290,11 +2290,11 @@ }, { "id": 109, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2303,7 +2303,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2311,11 +2311,11 @@ }, { "id": 110, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2324,7 +2324,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2332,11 +2332,11 @@ }, { "id": 111, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2345,7 +2345,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2353,11 +2353,11 @@ }, { "id": 112, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2366,7 +2366,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2374,11 +2374,11 @@ }, { "id": 113, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2387,7 +2387,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2395,11 +2395,11 @@ }, { "id": 114, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2408,7 +2408,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2416,11 +2416,11 @@ }, { "id": 115, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2429,7 +2429,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2437,11 +2437,11 @@ }, { "id": 116, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2450,7 +2450,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2458,11 +2458,11 @@ }, { "id": 117, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2471,7 +2471,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2479,11 +2479,11 @@ }, { "id": 118, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2492,7 +2492,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2500,11 +2500,11 @@ }, { "id": 119, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2513,7 +2513,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2521,11 +2521,11 @@ }, { "id": 120, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2534,7 +2534,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2542,11 +2542,11 @@ }, { "id": 121, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2555,7 +2555,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2563,11 +2563,11 @@ }, { "id": 122, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2576,7 +2576,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2584,11 +2584,11 @@ }, { "id": 123, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2597,7 +2597,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2605,11 +2605,11 @@ }, { "id": 124, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2618,7 +2618,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2626,11 +2626,11 @@ }, { "id": 125, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2639,7 +2639,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2647,11 +2647,11 @@ }, { "id": 126, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2660,7 +2660,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2668,11 +2668,11 @@ }, { "id": 127, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2681,7 +2681,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2689,11 +2689,11 @@ }, { "id": 128, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2702,7 +2702,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2710,11 +2710,11 @@ }, { "id": 129, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2723,7 +2723,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2731,11 +2731,11 @@ }, { "id": 130, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2744,7 +2744,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2752,11 +2752,11 @@ }, { "id": 131, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2765,7 +2765,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2773,11 +2773,11 @@ }, { "id": 132, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2786,7 +2786,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2794,11 +2794,11 @@ }, { "id": 133, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2807,7 +2807,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2815,11 +2815,11 @@ }, { "id": 134, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2828,7 +2828,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2836,11 +2836,11 @@ }, { "id": 135, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2849,7 +2849,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2857,11 +2857,11 @@ }, { "id": 136, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2870,7 +2870,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2878,11 +2878,11 @@ }, { "id": 137, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2891,7 +2891,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2899,11 +2899,11 @@ }, { "id": 138, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2912,7 +2912,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2920,11 +2920,11 @@ }, { "id": 139, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2933,7 +2933,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2941,11 +2941,11 @@ }, { "id": 140, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2954,7 +2954,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2962,11 +2962,11 @@ }, { "id": 141, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2975,7 +2975,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -2983,11 +2983,11 @@ }, { "id": 142, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -2996,7 +2996,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3004,11 +3004,11 @@ }, { "id": 143, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3017,7 +3017,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3025,11 +3025,11 @@ }, { "id": 144, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3038,7 +3038,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3046,11 +3046,11 @@ }, { "id": 145, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3059,7 +3059,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3067,11 +3067,11 @@ }, { "id": 146, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3080,7 +3080,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3088,11 +3088,11 @@ }, { "id": 147, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3101,7 +3101,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3109,11 +3109,11 @@ }, { "id": 148, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3122,7 +3122,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3130,11 +3130,11 @@ }, { "id": 149, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3143,7 +3143,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3151,11 +3151,11 @@ }, { "id": 150, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3164,7 +3164,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3172,11 +3172,11 @@ }, { "id": 151, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3185,7 +3185,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3193,11 +3193,11 @@ }, { "id": 152, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3206,7 +3206,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3214,11 +3214,11 @@ }, { "id": 153, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3227,7 +3227,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3235,11 +3235,11 @@ }, { "id": 154, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3248,7 +3248,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3256,11 +3256,11 @@ }, { "id": 155, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3269,7 +3269,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3277,11 +3277,11 @@ }, { "id": 156, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3290,7 +3290,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3298,11 +3298,11 @@ }, { "id": 157, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3311,7 +3311,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3319,11 +3319,11 @@ }, { "id": 158, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3332,7 +3332,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3340,11 +3340,11 @@ }, { "id": 159, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3353,7 +3353,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3361,11 +3361,11 @@ }, { "id": 160, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3374,7 +3374,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3382,11 +3382,11 @@ }, { "id": 161, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3395,7 +3395,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3403,11 +3403,11 @@ }, { "id": 162, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3416,7 +3416,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3424,11 +3424,11 @@ }, { "id": 163, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3437,7 +3437,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3445,11 +3445,11 @@ }, { "id": 164, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3458,7 +3458,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3466,11 +3466,11 @@ }, { "id": 165, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3479,7 +3479,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3487,11 +3487,11 @@ }, { "id": 166, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3500,7 +3500,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3508,11 +3508,11 @@ }, { "id": 167, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3521,7 +3521,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3529,11 +3529,11 @@ }, { "id": 168, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3542,7 +3542,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3550,11 +3550,11 @@ }, { "id": 169, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3563,7 +3563,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3571,11 +3571,11 @@ }, { "id": 170, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3584,7 +3584,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3592,11 +3592,11 @@ }, { "id": 171, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3605,7 +3605,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3613,11 +3613,11 @@ }, { "id": 172, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3626,7 +3626,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3634,11 +3634,11 @@ }, { "id": 173, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3647,7 +3647,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3655,11 +3655,11 @@ }, { "id": 174, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3668,7 +3668,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3676,11 +3676,11 @@ }, { "id": 175, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3689,7 +3689,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3697,11 +3697,11 @@ }, { "id": 176, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3710,7 +3710,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3718,11 +3718,11 @@ }, { "id": 177, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3731,7 +3731,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3739,11 +3739,11 @@ }, { "id": 178, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3752,7 +3752,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3760,11 +3760,11 @@ }, { "id": 179, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3773,7 +3773,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3781,11 +3781,11 @@ }, { "id": 180, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3794,7 +3794,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3802,11 +3802,11 @@ }, { "id": 181, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3815,7 +3815,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3823,11 +3823,11 @@ }, { "id": 182, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3836,7 +3836,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3844,11 +3844,11 @@ }, { "id": 183, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3857,7 +3857,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3865,11 +3865,11 @@ }, { "id": 184, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3878,7 +3878,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3886,11 +3886,11 @@ }, { "id": 185, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3899,7 +3899,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3907,11 +3907,11 @@ }, { "id": 186, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3920,7 +3920,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3928,11 +3928,11 @@ }, { "id": 187, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3941,7 +3941,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3949,11 +3949,11 @@ }, { "id": 188, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3962,7 +3962,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3970,11 +3970,11 @@ }, { "id": 189, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -3983,7 +3983,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -3991,11 +3991,11 @@ }, { "id": 190, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4004,7 +4004,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4012,11 +4012,11 @@ }, { "id": 191, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4025,7 +4025,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4033,11 +4033,11 @@ }, { "id": 192, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4046,7 +4046,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4054,11 +4054,11 @@ }, { "id": 193, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4067,7 +4067,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4075,11 +4075,11 @@ }, { "id": 194, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4088,7 +4088,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4096,11 +4096,11 @@ }, { "id": 195, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4109,7 +4109,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4117,11 +4117,11 @@ }, { "id": 196, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4130,7 +4130,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4138,11 +4138,11 @@ }, { "id": 197, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4151,7 +4151,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4159,11 +4159,11 @@ }, { "id": 198, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4172,7 +4172,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4180,11 +4180,11 @@ }, { "id": 199, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4193,7 +4193,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4201,11 +4201,11 @@ }, { "id": 200, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4214,7 +4214,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4222,11 +4222,11 @@ }, { "id": 201, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4235,7 +4235,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4243,11 +4243,11 @@ }, { "id": 202, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4256,7 +4256,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4264,11 +4264,11 @@ }, { "id": 203, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4277,7 +4277,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4285,11 +4285,11 @@ }, { "id": 204, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4298,7 +4298,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4306,11 +4306,11 @@ }, { "id": 205, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4319,7 +4319,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4327,11 +4327,11 @@ }, { "id": 206, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4340,7 +4340,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4348,11 +4348,11 @@ }, { "id": 207, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4361,7 +4361,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4369,11 +4369,11 @@ }, { "id": 208, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4382,7 +4382,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4390,11 +4390,11 @@ }, { "id": 209, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4403,7 +4403,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4411,11 +4411,11 @@ }, { "id": 210, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4424,7 +4424,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4432,11 +4432,11 @@ }, { "id": 211, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4445,7 +4445,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4453,11 +4453,11 @@ }, { "id": 212, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4466,7 +4466,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4474,11 +4474,11 @@ }, { "id": 213, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4487,7 +4487,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4495,11 +4495,11 @@ }, { "id": 214, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4508,7 +4508,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4516,11 +4516,11 @@ }, { "id": 215, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4529,7 +4529,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4537,11 +4537,11 @@ }, { "id": 216, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4550,7 +4550,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4558,11 +4558,11 @@ }, { "id": 217, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4571,7 +4571,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4579,11 +4579,11 @@ }, { "id": 218, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4592,7 +4592,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4600,11 +4600,11 @@ }, { "id": 219, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4613,7 +4613,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4621,11 +4621,11 @@ }, { "id": 220, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4634,7 +4634,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4642,11 +4642,11 @@ }, { "id": 221, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4655,7 +4655,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4663,11 +4663,11 @@ }, { "id": 222, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4676,7 +4676,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4684,11 +4684,11 @@ }, { "id": 223, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4697,7 +4697,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4705,11 +4705,11 @@ }, { "id": 224, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4718,7 +4718,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4726,11 +4726,11 @@ }, { "id": 225, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4739,7 +4739,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4747,11 +4747,11 @@ }, { "id": 226, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4760,7 +4760,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4768,11 +4768,11 @@ }, { "id": 227, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4781,7 +4781,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4789,11 +4789,11 @@ }, { "id": 228, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4802,7 +4802,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4810,11 +4810,11 @@ }, { "id": 229, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4823,7 +4823,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4831,11 +4831,11 @@ }, { "id": 230, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4844,7 +4844,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4852,11 +4852,11 @@ }, { "id": 231, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4865,7 +4865,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4873,11 +4873,11 @@ }, { "id": 232, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4886,7 +4886,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4894,11 +4894,11 @@ }, { "id": 233, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4907,7 +4907,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4915,11 +4915,11 @@ }, { "id": 234, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4928,7 +4928,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4936,11 +4936,11 @@ }, { "id": 235, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4949,7 +4949,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4957,11 +4957,11 @@ }, { "id": 236, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4970,7 +4970,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4978,11 +4978,11 @@ }, { "id": 237, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -4991,7 +4991,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -4999,11 +4999,11 @@ }, { "id": 238, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5012,7 +5012,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5020,11 +5020,11 @@ }, { "id": 239, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5033,7 +5033,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5041,11 +5041,11 @@ }, { "id": 240, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5054,7 +5054,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5062,11 +5062,11 @@ }, { "id": 241, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5075,7 +5075,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5083,11 +5083,11 @@ }, { "id": 242, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5096,7 +5096,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5104,11 +5104,11 @@ }, { "id": 243, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5117,7 +5117,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5125,11 +5125,11 @@ }, { "id": 244, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5138,7 +5138,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5146,11 +5146,11 @@ }, { "id": 245, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5159,7 +5159,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5167,11 +5167,11 @@ }, { "id": 246, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5180,7 +5180,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5188,11 +5188,11 @@ }, { "id": 247, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5201,7 +5201,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5209,11 +5209,11 @@ }, { "id": 248, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5222,7 +5222,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5230,11 +5230,11 @@ }, { "id": 249, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5243,7 +5243,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5251,11 +5251,11 @@ }, { "id": 250, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5264,7 +5264,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5272,11 +5272,11 @@ }, { "id": 251, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5285,7 +5285,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5293,11 +5293,11 @@ }, { "id": 252, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5306,7 +5306,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5314,11 +5314,11 @@ }, { "id": 253, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5327,7 +5327,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5335,11 +5335,11 @@ }, { "id": 254, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5348,7 +5348,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5356,11 +5356,11 @@ }, { "id": 255, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5369,7 +5369,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5377,11 +5377,11 @@ }, { "id": 256, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5390,7 +5390,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5398,11 +5398,11 @@ }, { "id": 257, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5411,7 +5411,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5419,11 +5419,11 @@ }, { "id": 258, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5432,7 +5432,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5440,11 +5440,11 @@ }, { "id": 259, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5453,7 +5453,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5461,11 +5461,11 @@ }, { "id": 260, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5474,7 +5474,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5482,11 +5482,11 @@ }, { "id": 261, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5495,7 +5495,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5503,11 +5503,11 @@ }, { "id": 262, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5516,7 +5516,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5524,11 +5524,11 @@ }, { "id": 263, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5537,7 +5537,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5545,11 +5545,11 @@ }, { "id": 264, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5558,7 +5558,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5566,11 +5566,11 @@ }, { "id": 265, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5579,7 +5579,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5587,11 +5587,11 @@ }, { "id": 266, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5600,7 +5600,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5608,11 +5608,11 @@ }, { "id": 267, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5621,7 +5621,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5629,11 +5629,11 @@ }, { "id": 268, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5642,7 +5642,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5650,11 +5650,11 @@ }, { "id": 269, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5663,7 +5663,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5671,11 +5671,11 @@ }, { "id": 270, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5684,7 +5684,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5692,11 +5692,11 @@ }, { "id": 271, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5705,7 +5705,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5713,11 +5713,11 @@ }, { "id": 272, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5726,7 +5726,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5734,11 +5734,11 @@ }, { "id": 273, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5747,7 +5747,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5755,11 +5755,11 @@ }, { "id": 274, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5768,7 +5768,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5776,11 +5776,11 @@ }, { "id": 275, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5789,7 +5789,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5797,11 +5797,11 @@ }, { "id": 276, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5810,7 +5810,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5818,11 +5818,11 @@ }, { "id": 277, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5831,7 +5831,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5839,11 +5839,11 @@ }, { "id": 278, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5852,7 +5852,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5860,11 +5860,11 @@ }, { "id": 279, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5873,7 +5873,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5881,11 +5881,11 @@ }, { "id": 280, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5894,7 +5894,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5902,11 +5902,11 @@ }, { "id": 281, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5915,7 +5915,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5923,11 +5923,11 @@ }, { "id": 282, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5936,7 +5936,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5944,11 +5944,11 @@ }, { "id": 283, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5957,7 +5957,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5965,11 +5965,11 @@ }, { "id": 284, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5978,7 +5978,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -5986,11 +5986,11 @@ }, { "id": 285, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -5999,7 +5999,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6007,11 +6007,11 @@ }, { "id": 286, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6020,7 +6020,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6028,11 +6028,11 @@ }, { "id": 287, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6041,7 +6041,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6049,11 +6049,11 @@ }, { "id": 288, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6062,7 +6062,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6070,11 +6070,11 @@ }, { "id": 289, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6083,7 +6083,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6091,11 +6091,11 @@ }, { "id": 290, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6104,7 +6104,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6112,11 +6112,11 @@ }, { "id": 291, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6125,7 +6125,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6133,11 +6133,11 @@ }, { "id": 292, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6146,7 +6146,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6154,11 +6154,11 @@ }, { "id": 293, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6167,7 +6167,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6175,11 +6175,11 @@ }, { "id": 294, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6188,7 +6188,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6196,11 +6196,11 @@ }, { "id": 295, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6209,7 +6209,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6217,11 +6217,11 @@ }, { "id": 296, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6230,7 +6230,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6238,11 +6238,11 @@ }, { "id": 297, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6251,7 +6251,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6259,11 +6259,11 @@ }, { "id": 298, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6272,7 +6272,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6280,11 +6280,11 @@ }, { "id": 299, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6293,7 +6293,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6301,11 +6301,11 @@ }, { "id": 300, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6314,7 +6314,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6322,11 +6322,11 @@ }, { "id": 301, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6335,7 +6335,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6343,11 +6343,11 @@ }, { "id": 302, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6356,7 +6356,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6364,11 +6364,11 @@ }, { "id": 303, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6377,7 +6377,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6385,11 +6385,11 @@ }, { "id": 304, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6398,7 +6398,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6406,11 +6406,11 @@ }, { "id": 305, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6419,7 +6419,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6427,11 +6427,11 @@ }, { "id": 306, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6440,7 +6440,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6448,11 +6448,11 @@ }, { "id": 307, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6461,7 +6461,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6469,11 +6469,11 @@ }, { "id": 308, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6482,7 +6482,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6490,11 +6490,11 @@ }, { "id": 309, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6503,7 +6503,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6511,11 +6511,11 @@ }, { "id": 310, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6524,7 +6524,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6532,11 +6532,11 @@ }, { "id": 311, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6545,7 +6545,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6553,11 +6553,11 @@ }, { "id": 312, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6566,7 +6566,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6574,11 +6574,11 @@ }, { "id": 313, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6587,7 +6587,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6595,11 +6595,11 @@ }, { "id": 314, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6608,7 +6608,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6616,11 +6616,11 @@ }, { "id": 315, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6629,7 +6629,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6637,11 +6637,11 @@ }, { "id": 316, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6650,7 +6650,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6658,11 +6658,11 @@ }, { "id": 317, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6671,7 +6671,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6679,11 +6679,11 @@ }, { "id": 318, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6692,7 +6692,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6700,11 +6700,11 @@ }, { "id": 319, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6713,7 +6713,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6721,11 +6721,11 @@ }, { "id": 320, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6734,7 +6734,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6742,11 +6742,11 @@ }, { "id": 321, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6755,7 +6755,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6763,11 +6763,11 @@ }, { "id": 322, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6776,7 +6776,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6784,11 +6784,11 @@ }, { "id": 323, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6797,7 +6797,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6805,11 +6805,11 @@ }, { "id": 324, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6818,7 +6818,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6826,11 +6826,11 @@ }, { "id": 325, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6839,7 +6839,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6847,11 +6847,11 @@ }, { "id": 326, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6860,7 +6860,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6868,11 +6868,11 @@ }, { "id": 327, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6881,7 +6881,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6889,11 +6889,11 @@ }, { "id": 328, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6902,7 +6902,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6910,11 +6910,11 @@ }, { "id": 329, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6923,7 +6923,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6931,11 +6931,11 @@ }, { "id": 330, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6944,7 +6944,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6952,11 +6952,11 @@ }, { "id": 331, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6965,7 +6965,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6973,11 +6973,11 @@ }, { "id": 332, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -6986,7 +6986,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -6994,11 +6994,11 @@ }, { "id": 333, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7007,7 +7007,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7015,11 +7015,11 @@ }, { "id": 334, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7028,7 +7028,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7036,11 +7036,11 @@ }, { "id": 335, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7049,7 +7049,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7057,11 +7057,11 @@ }, { "id": 336, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7070,7 +7070,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7078,11 +7078,11 @@ }, { "id": 337, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7091,7 +7091,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7099,11 +7099,11 @@ }, { "id": 338, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7112,7 +7112,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7120,11 +7120,11 @@ }, { "id": 339, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7133,7 +7133,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7141,11 +7141,11 @@ }, { "id": 340, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7154,7 +7154,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7162,11 +7162,11 @@ }, { "id": 341, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7175,7 +7175,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7183,11 +7183,11 @@ }, { "id": 342, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7196,7 +7196,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7204,11 +7204,11 @@ }, { "id": 343, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7217,7 +7217,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7225,11 +7225,11 @@ }, { "id": 344, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7238,7 +7238,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7246,11 +7246,11 @@ }, { "id": 345, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7259,7 +7259,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7267,11 +7267,11 @@ }, { "id": 346, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7280,7 +7280,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7288,11 +7288,11 @@ }, { "id": 347, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7301,7 +7301,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7309,11 +7309,11 @@ }, { "id": 348, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7322,7 +7322,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7330,11 +7330,11 @@ }, { "id": 349, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7343,7 +7343,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7351,11 +7351,11 @@ }, { "id": 350, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7364,7 +7364,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7372,11 +7372,11 @@ }, { "id": 351, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7385,7 +7385,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7393,11 +7393,11 @@ }, { "id": 352, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7406,7 +7406,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7414,11 +7414,11 @@ }, { "id": 353, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7427,7 +7427,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7435,11 +7435,11 @@ }, { "id": 354, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7448,7 +7448,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7456,11 +7456,11 @@ }, { "id": 355, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7469,7 +7469,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7477,11 +7477,11 @@ }, { "id": 356, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7490,7 +7490,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7498,11 +7498,11 @@ }, { "id": 357, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7511,7 +7511,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7519,11 +7519,11 @@ }, { "id": 358, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7532,7 +7532,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7540,11 +7540,11 @@ }, { "id": 359, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7553,7 +7553,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7561,11 +7561,11 @@ }, { "id": 360, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7574,7 +7574,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7582,11 +7582,11 @@ }, { "id": 361, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7595,7 +7595,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7603,11 +7603,11 @@ }, { "id": 362, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7616,7 +7616,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7624,11 +7624,11 @@ }, { "id": 363, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7637,7 +7637,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7645,11 +7645,11 @@ }, { "id": 364, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7658,7 +7658,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7666,11 +7666,11 @@ }, { "id": 365, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7679,7 +7679,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7687,11 +7687,11 @@ }, { "id": 366, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7700,7 +7700,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7708,11 +7708,11 @@ }, { "id": 367, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7721,7 +7721,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7729,11 +7729,11 @@ }, { "id": 368, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7742,7 +7742,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7750,11 +7750,11 @@ }, { "id": 369, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7763,7 +7763,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7771,11 +7771,11 @@ }, { "id": 370, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7784,7 +7784,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7792,11 +7792,11 @@ }, { "id": 371, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7805,7 +7805,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7813,11 +7813,11 @@ }, { "id": 372, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7826,7 +7826,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7834,11 +7834,11 @@ }, { "id": 373, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7847,7 +7847,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7855,11 +7855,11 @@ }, { "id": 374, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7868,7 +7868,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7876,11 +7876,11 @@ }, { "id": 375, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7889,7 +7889,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7897,11 +7897,11 @@ }, { "id": 376, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7910,7 +7910,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7918,11 +7918,11 @@ }, { "id": 377, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7931,7 +7931,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7939,11 +7939,11 @@ }, { "id": 378, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7952,7 +7952,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7960,11 +7960,11 @@ }, { "id": 379, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7973,7 +7973,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -7981,11 +7981,11 @@ }, { "id": 380, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -7994,7 +7994,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8002,11 +8002,11 @@ }, { "id": 381, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8015,7 +8015,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8023,11 +8023,11 @@ }, { "id": 382, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8036,7 +8036,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8044,11 +8044,11 @@ }, { "id": 383, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8057,7 +8057,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8065,11 +8065,11 @@ }, { "id": 384, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8078,7 +8078,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8086,11 +8086,11 @@ }, { "id": 385, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8099,7 +8099,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8107,11 +8107,11 @@ }, { "id": 386, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8120,7 +8120,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8128,11 +8128,11 @@ }, { "id": 387, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8141,7 +8141,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8149,11 +8149,11 @@ }, { "id": 388, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8162,7 +8162,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8170,11 +8170,11 @@ }, { "id": 389, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8183,7 +8183,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8191,11 +8191,11 @@ }, { "id": 390, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8204,7 +8204,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8212,11 +8212,11 @@ }, { "id": 391, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8225,7 +8225,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8233,11 +8233,11 @@ }, { "id": 392, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8246,7 +8246,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8254,11 +8254,11 @@ }, { "id": 393, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8267,7 +8267,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8275,11 +8275,11 @@ }, { "id": 394, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8288,7 +8288,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8296,11 +8296,11 @@ }, { "id": 395, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8309,7 +8309,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8317,11 +8317,11 @@ }, { "id": 396, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8330,7 +8330,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8338,11 +8338,11 @@ }, { "id": 397, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8351,7 +8351,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8359,11 +8359,11 @@ }, { "id": 398, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8372,7 +8372,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8380,11 +8380,11 @@ }, { "id": 399, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8393,7 +8393,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8401,11 +8401,11 @@ }, { "id": 400, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8414,7 +8414,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8422,11 +8422,11 @@ }, { "id": 401, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8435,7 +8435,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8443,11 +8443,11 @@ }, { "id": 402, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8456,7 +8456,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8464,11 +8464,11 @@ }, { "id": 403, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8477,7 +8477,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8485,11 +8485,11 @@ }, { "id": 404, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8498,7 +8498,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8506,11 +8506,11 @@ }, { "id": 405, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8519,7 +8519,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8527,11 +8527,11 @@ }, { "id": 406, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8540,7 +8540,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8548,11 +8548,11 @@ }, { "id": 407, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8561,7 +8561,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8569,11 +8569,11 @@ }, { "id": 408, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8582,7 +8582,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8590,11 +8590,11 @@ }, { "id": 409, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8603,7 +8603,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8611,11 +8611,11 @@ }, { "id": 410, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8624,7 +8624,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8632,11 +8632,11 @@ }, { "id": 411, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8645,7 +8645,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8653,11 +8653,11 @@ }, { "id": 412, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8666,7 +8666,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8674,11 +8674,11 @@ }, { "id": 413, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8687,7 +8687,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8695,11 +8695,11 @@ }, { "id": 414, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8708,7 +8708,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8716,11 +8716,11 @@ }, { "id": 415, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8729,7 +8729,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8737,11 +8737,11 @@ }, { "id": 416, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8750,7 +8750,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8758,11 +8758,11 @@ }, { "id": 417, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8771,7 +8771,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8779,11 +8779,11 @@ }, { "id": 418, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8792,7 +8792,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8800,11 +8800,11 @@ }, { "id": 419, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8813,7 +8813,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8821,11 +8821,11 @@ }, { "id": 420, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8834,7 +8834,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8842,11 +8842,11 @@ }, { "id": 421, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8855,7 +8855,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8863,11 +8863,11 @@ }, { "id": 422, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8876,7 +8876,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8884,11 +8884,11 @@ }, { "id": 423, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8897,7 +8897,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8905,11 +8905,11 @@ }, { "id": 424, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8918,7 +8918,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8926,11 +8926,11 @@ }, { "id": 425, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8939,7 +8939,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8947,11 +8947,11 @@ }, { "id": 426, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8960,7 +8960,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8968,11 +8968,11 @@ }, { "id": 427, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -8981,7 +8981,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -8989,11 +8989,11 @@ }, { "id": 428, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9002,7 +9002,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9010,11 +9010,11 @@ }, { "id": 429, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9023,7 +9023,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9031,11 +9031,11 @@ }, { "id": 430, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9044,7 +9044,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9052,11 +9052,11 @@ }, { "id": 431, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9065,7 +9065,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9073,11 +9073,11 @@ }, { "id": 432, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9086,7 +9086,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9094,11 +9094,11 @@ }, { "id": 433, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9107,7 +9107,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9115,11 +9115,11 @@ }, { "id": 434, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9128,7 +9128,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9136,11 +9136,11 @@ }, { "id": 435, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9149,7 +9149,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9157,11 +9157,11 @@ }, { "id": 436, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9170,7 +9170,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9178,11 +9178,11 @@ }, { "id": 437, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9191,7 +9191,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9199,11 +9199,11 @@ }, { "id": 438, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9212,7 +9212,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9220,11 +9220,11 @@ }, { "id": 439, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9233,7 +9233,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9241,11 +9241,11 @@ }, { "id": 440, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9254,7 +9254,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9262,11 +9262,11 @@ }, { "id": 441, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9275,7 +9275,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9283,11 +9283,11 @@ }, { "id": 442, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9296,7 +9296,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9304,11 +9304,11 @@ }, { "id": 443, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9317,7 +9317,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9325,11 +9325,11 @@ }, { "id": 444, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9338,7 +9338,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9346,11 +9346,11 @@ }, { "id": 445, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9359,7 +9359,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9367,11 +9367,11 @@ }, { "id": 446, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9380,7 +9380,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9388,11 +9388,11 @@ }, { "id": 447, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9401,7 +9401,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9409,11 +9409,11 @@ }, { "id": 448, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9422,7 +9422,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9430,11 +9430,11 @@ }, { "id": 449, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9443,7 +9443,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9451,11 +9451,11 @@ }, { "id": 450, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9464,7 +9464,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9472,11 +9472,11 @@ }, { "id": 451, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9485,7 +9485,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9493,11 +9493,11 @@ }, { "id": 452, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9506,7 +9506,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9514,11 +9514,11 @@ }, { "id": 453, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9527,7 +9527,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9535,11 +9535,11 @@ }, { "id": 454, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9548,7 +9548,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9556,11 +9556,11 @@ }, { "id": 455, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9569,7 +9569,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9577,11 +9577,11 @@ }, { "id": 456, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9590,7 +9590,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9598,11 +9598,11 @@ }, { "id": 457, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9611,7 +9611,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9619,11 +9619,11 @@ }, { "id": 458, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9632,7 +9632,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9640,11 +9640,11 @@ }, { "id": 459, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9653,7 +9653,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9661,11 +9661,11 @@ }, { "id": 460, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9674,7 +9674,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9682,11 +9682,11 @@ }, { "id": 461, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9695,7 +9695,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9703,11 +9703,11 @@ }, { "id": 462, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9716,7 +9716,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9724,11 +9724,11 @@ }, { "id": 463, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9737,7 +9737,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9745,11 +9745,11 @@ }, { "id": 464, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9758,7 +9758,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9766,11 +9766,11 @@ }, { "id": 465, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9779,7 +9779,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9787,11 +9787,11 @@ }, { "id": 466, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9800,7 +9800,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9808,11 +9808,11 @@ }, { "id": 467, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9821,7 +9821,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9829,11 +9829,11 @@ }, { "id": 468, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9842,7 +9842,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9850,11 +9850,11 @@ }, { "id": 469, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9863,7 +9863,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9871,11 +9871,11 @@ }, { "id": 470, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9884,7 +9884,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9892,11 +9892,11 @@ }, { "id": 471, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9905,7 +9905,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9913,11 +9913,11 @@ }, { "id": 472, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9926,7 +9926,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9934,11 +9934,11 @@ }, { "id": 473, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9947,7 +9947,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9955,11 +9955,11 @@ }, { "id": 474, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9968,7 +9968,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9976,11 +9976,11 @@ }, { "id": 475, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -9989,7 +9989,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -9997,11 +9997,11 @@ }, { "id": 476, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10010,7 +10010,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10018,11 +10018,11 @@ }, { "id": 477, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10031,7 +10031,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10039,11 +10039,11 @@ }, { "id": 478, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10052,7 +10052,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10060,11 +10060,11 @@ }, { "id": 479, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10073,7 +10073,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10081,11 +10081,11 @@ }, { "id": 480, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10094,7 +10094,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10102,11 +10102,11 @@ }, { "id": 481, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10115,7 +10115,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10123,11 +10123,11 @@ }, { "id": 482, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10136,7 +10136,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10144,11 +10144,11 @@ }, { "id": 483, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10157,7 +10157,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10165,11 +10165,11 @@ }, { "id": 484, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10178,7 +10178,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10186,11 +10186,11 @@ }, { "id": 485, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10199,7 +10199,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10207,11 +10207,11 @@ }, { "id": 486, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10220,7 +10220,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10228,11 +10228,11 @@ }, { "id": 487, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10241,7 +10241,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10249,11 +10249,11 @@ }, { "id": 488, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10262,7 +10262,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10270,11 +10270,11 @@ }, { "id": 489, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10283,7 +10283,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10291,11 +10291,11 @@ }, { "id": 490, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10304,7 +10304,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10312,11 +10312,11 @@ }, { "id": 491, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10325,7 +10325,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10333,11 +10333,11 @@ }, { "id": 492, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10346,7 +10346,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10354,11 +10354,11 @@ }, { "id": 493, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10367,7 +10367,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10375,11 +10375,11 @@ }, { "id": 494, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10388,7 +10388,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10396,11 +10396,11 @@ }, { "id": 495, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10409,7 +10409,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10417,11 +10417,11 @@ }, { "id": 496, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10430,7 +10430,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10438,11 +10438,11 @@ }, { "id": 497, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10451,7 +10451,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10459,11 +10459,11 @@ }, { "id": 498, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10472,7 +10472,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10480,11 +10480,11 @@ }, { "id": 499, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10493,7 +10493,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10501,11 +10501,11 @@ }, { "id": 500, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10514,7 +10514,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10522,11 +10522,11 @@ }, { "id": 501, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10535,7 +10535,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10543,11 +10543,11 @@ }, { "id": 502, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10556,7 +10556,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10564,11 +10564,11 @@ }, { "id": 503, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10577,7 +10577,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10585,11 +10585,11 @@ }, { "id": 504, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10598,7 +10598,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10606,11 +10606,11 @@ }, { "id": 505, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10619,7 +10619,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10627,11 +10627,11 @@ }, { "id": 506, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10640,7 +10640,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10648,11 +10648,11 @@ }, { "id": 507, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10661,7 +10661,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10669,11 +10669,11 @@ }, { "id": 508, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10682,7 +10682,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10690,11 +10690,11 @@ }, { "id": 509, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10703,7 +10703,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10711,11 +10711,11 @@ }, { "id": 510, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10724,7 +10724,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10732,11 +10732,11 @@ }, { "id": 511, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10745,7 +10745,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10753,11 +10753,11 @@ }, { "id": 512, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10766,7 +10766,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10774,11 +10774,11 @@ }, { "id": 513, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10787,7 +10787,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10795,11 +10795,11 @@ }, { "id": 514, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10808,7 +10808,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10816,11 +10816,11 @@ }, { "id": 515, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10829,7 +10829,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10837,11 +10837,11 @@ }, { "id": 516, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10850,7 +10850,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10858,11 +10858,11 @@ }, { "id": 517, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10871,7 +10871,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10879,11 +10879,11 @@ }, { "id": 518, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10892,7 +10892,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10900,11 +10900,11 @@ }, { "id": 519, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10913,7 +10913,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10921,11 +10921,11 @@ }, { "id": 520, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10934,7 +10934,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10942,11 +10942,11 @@ }, { "id": 521, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10955,7 +10955,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10963,11 +10963,11 @@ }, { "id": 522, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10976,7 +10976,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -10984,11 +10984,11 @@ }, { "id": 523, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -10997,7 +10997,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11005,11 +11005,11 @@ }, { "id": 524, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11018,7 +11018,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11026,11 +11026,11 @@ }, { "id": 525, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11039,7 +11039,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11047,11 +11047,11 @@ }, { "id": 526, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11060,7 +11060,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11068,11 +11068,11 @@ }, { "id": 527, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11081,7 +11081,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11089,11 +11089,11 @@ }, { "id": 528, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11102,7 +11102,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11110,11 +11110,11 @@ }, { "id": 529, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11123,7 +11123,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11131,11 +11131,11 @@ }, { "id": 530, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11144,7 +11144,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11152,11 +11152,11 @@ }, { "id": 531, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11165,7 +11165,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11173,11 +11173,11 @@ }, { "id": 532, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11186,7 +11186,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11194,11 +11194,11 @@ }, { "id": 533, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11207,7 +11207,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11215,11 +11215,11 @@ }, { "id": 534, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11228,7 +11228,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11236,11 +11236,11 @@ }, { "id": 535, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11249,7 +11249,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11257,11 +11257,11 @@ }, { "id": 536, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11270,7 +11270,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11278,11 +11278,11 @@ }, { "id": 537, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11291,7 +11291,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11299,11 +11299,11 @@ }, { "id": 538, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11312,7 +11312,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11320,11 +11320,11 @@ }, { "id": 539, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11333,7 +11333,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11341,11 +11341,11 @@ }, { "id": 540, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11354,7 +11354,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11362,11 +11362,11 @@ }, { "id": 541, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11375,7 +11375,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11383,11 +11383,11 @@ }, { "id": 542, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11396,7 +11396,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11404,11 +11404,11 @@ }, { "id": 543, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11417,7 +11417,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11425,11 +11425,11 @@ }, { "id": 544, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11438,7 +11438,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11446,11 +11446,11 @@ }, { "id": 545, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11459,7 +11459,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11467,11 +11467,11 @@ }, { "id": 546, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11480,7 +11480,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11488,11 +11488,11 @@ }, { "id": 547, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11501,7 +11501,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11509,11 +11509,11 @@ }, { "id": 548, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11522,7 +11522,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11530,11 +11530,11 @@ }, { "id": 549, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11543,7 +11543,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11551,11 +11551,11 @@ }, { "id": 550, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11564,7 +11564,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11572,11 +11572,11 @@ }, { "id": 551, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11585,7 +11585,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11593,11 +11593,11 @@ }, { "id": 552, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11606,7 +11606,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11614,11 +11614,11 @@ }, { "id": 553, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11627,7 +11627,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11635,11 +11635,11 @@ }, { "id": 554, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11648,7 +11648,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11656,11 +11656,11 @@ }, { "id": 555, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11669,7 +11669,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11677,11 +11677,11 @@ }, { "id": 556, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11690,7 +11690,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11698,11 +11698,11 @@ }, { "id": 557, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11711,7 +11711,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11719,11 +11719,11 @@ }, { "id": 558, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11732,7 +11732,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11740,11 +11740,11 @@ }, { "id": 559, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11753,7 +11753,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11761,11 +11761,11 @@ }, { "id": 560, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11774,7 +11774,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11782,11 +11782,11 @@ }, { "id": 561, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11795,7 +11795,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11803,11 +11803,11 @@ }, { "id": 562, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11816,7 +11816,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11824,11 +11824,11 @@ }, { "id": 563, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11837,7 +11837,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11845,11 +11845,11 @@ }, { "id": 564, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11858,7 +11858,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11866,11 +11866,11 @@ }, { "id": 565, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11879,7 +11879,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11887,11 +11887,11 @@ }, { "id": 566, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11900,7 +11900,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11908,11 +11908,11 @@ }, { "id": 567, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11921,7 +11921,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11929,11 +11929,11 @@ }, { "id": 568, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11942,7 +11942,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11950,11 +11950,11 @@ }, { "id": 569, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11963,7 +11963,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11971,11 +11971,11 @@ }, { "id": 570, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -11984,7 +11984,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -11992,11 +11992,11 @@ }, { "id": 571, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12005,7 +12005,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12013,11 +12013,11 @@ }, { "id": 572, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12026,7 +12026,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12034,11 +12034,11 @@ }, { "id": 573, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12047,7 +12047,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12055,11 +12055,11 @@ }, { "id": 574, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12068,7 +12068,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12076,11 +12076,11 @@ }, { "id": 575, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12089,7 +12089,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12097,11 +12097,11 @@ }, { "id": 576, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12110,7 +12110,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12118,11 +12118,11 @@ }, { "id": 577, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12131,7 +12131,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12139,11 +12139,11 @@ }, { "id": 578, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12152,7 +12152,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12160,11 +12160,11 @@ }, { "id": 579, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12173,7 +12173,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12181,11 +12181,11 @@ }, { "id": 580, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12194,7 +12194,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12202,11 +12202,11 @@ }, { "id": 581, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12215,7 +12215,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12223,11 +12223,11 @@ }, { "id": 582, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12236,7 +12236,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12244,11 +12244,11 @@ }, { "id": 583, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12257,7 +12257,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12265,11 +12265,11 @@ }, { "id": 584, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12278,7 +12278,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12286,11 +12286,11 @@ }, { "id": 585, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12299,7 +12299,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12307,11 +12307,11 @@ }, { "id": 586, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12320,7 +12320,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12328,11 +12328,11 @@ }, { "id": 587, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12341,7 +12341,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12349,11 +12349,11 @@ }, { "id": 588, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12362,7 +12362,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12370,11 +12370,11 @@ }, { "id": 589, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12383,7 +12383,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12391,11 +12391,11 @@ }, { "id": 590, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12404,7 +12404,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12412,11 +12412,11 @@ }, { "id": 591, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12425,7 +12425,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12433,11 +12433,11 @@ }, { "id": 592, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12446,7 +12446,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12454,11 +12454,11 @@ }, { "id": 593, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12467,7 +12467,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12475,11 +12475,11 @@ }, { "id": 594, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12488,7 +12488,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12496,11 +12496,11 @@ }, { "id": 595, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12509,7 +12509,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12517,11 +12517,11 @@ }, { "id": 596, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12530,7 +12530,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12538,11 +12538,11 @@ }, { "id": 597, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12551,7 +12551,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12559,11 +12559,11 @@ }, { "id": 598, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12572,7 +12572,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12580,11 +12580,11 @@ }, { "id": 599, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12593,7 +12593,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12601,11 +12601,11 @@ }, { "id": 600, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12614,7 +12614,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12622,11 +12622,11 @@ }, { "id": 601, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12635,7 +12635,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12643,11 +12643,11 @@ }, { "id": 602, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12656,7 +12656,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12664,11 +12664,11 @@ }, { "id": 603, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12677,7 +12677,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12685,11 +12685,11 @@ }, { "id": 604, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12698,7 +12698,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12706,11 +12706,11 @@ }, { "id": 605, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12719,7 +12719,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12727,11 +12727,11 @@ }, { "id": 606, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12740,7 +12740,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12748,11 +12748,11 @@ }, { "id": 607, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12761,7 +12761,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12769,11 +12769,11 @@ }, { "id": 608, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12782,7 +12782,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12790,11 +12790,11 @@ }, { "id": 609, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12803,7 +12803,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12811,11 +12811,11 @@ }, { "id": 610, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12824,7 +12824,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12832,11 +12832,11 @@ }, { "id": 611, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12845,7 +12845,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12853,11 +12853,11 @@ }, { "id": 612, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12866,7 +12866,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12874,11 +12874,11 @@ }, { "id": 613, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12887,7 +12887,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12895,11 +12895,11 @@ }, { "id": 614, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12908,7 +12908,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12916,11 +12916,11 @@ }, { "id": 615, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12929,7 +12929,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12937,11 +12937,11 @@ }, { "id": 616, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12950,7 +12950,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12958,11 +12958,11 @@ }, { "id": 617, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12971,7 +12971,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -12979,11 +12979,11 @@ }, { "id": 618, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -12992,7 +12992,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13000,11 +13000,11 @@ }, { "id": 619, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13013,7 +13013,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13021,11 +13021,11 @@ }, { "id": 620, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13034,7 +13034,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13042,11 +13042,11 @@ }, { "id": 621, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13055,7 +13055,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13063,11 +13063,11 @@ }, { "id": 622, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13076,7 +13076,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13084,11 +13084,11 @@ }, { "id": 623, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13097,7 +13097,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13105,11 +13105,11 @@ }, { "id": 624, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13118,7 +13118,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13126,11 +13126,11 @@ }, { "id": 625, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13139,7 +13139,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13147,11 +13147,11 @@ }, { "id": 626, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13160,7 +13160,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13168,11 +13168,11 @@ }, { "id": 627, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13181,7 +13181,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13189,11 +13189,11 @@ }, { "id": 628, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13202,7 +13202,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13210,11 +13210,11 @@ }, { "id": 629, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13223,7 +13223,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13231,11 +13231,11 @@ }, { "id": 630, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13244,7 +13244,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13252,11 +13252,11 @@ }, { "id": 631, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13265,7 +13265,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13273,11 +13273,11 @@ }, { "id": 632, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13286,7 +13286,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13294,11 +13294,11 @@ }, { "id": 633, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13307,7 +13307,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13315,11 +13315,11 @@ }, { "id": 634, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13328,7 +13328,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13336,11 +13336,11 @@ }, { "id": 635, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13349,7 +13349,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13357,11 +13357,11 @@ }, { "id": 636, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13370,7 +13370,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13378,11 +13378,11 @@ }, { "id": 637, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13391,7 +13391,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13399,11 +13399,11 @@ }, { "id": 638, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13412,7 +13412,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13420,11 +13420,11 @@ }, { "id": 639, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13433,7 +13433,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13441,11 +13441,11 @@ }, { "id": 640, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13454,7 +13454,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13462,11 +13462,11 @@ }, { "id": 641, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13475,7 +13475,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13483,11 +13483,11 @@ }, { "id": 642, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13496,7 +13496,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13504,11 +13504,11 @@ }, { "id": 643, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13517,7 +13517,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13525,11 +13525,11 @@ }, { "id": 644, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13538,7 +13538,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13546,11 +13546,11 @@ }, { "id": 645, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13559,7 +13559,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13567,11 +13567,11 @@ }, { "id": 646, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13580,7 +13580,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13588,11 +13588,11 @@ }, { "id": 647, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13601,7 +13601,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13609,11 +13609,11 @@ }, { "id": 648, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13622,7 +13622,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13630,11 +13630,11 @@ }, { "id": 649, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13643,7 +13643,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13651,11 +13651,11 @@ }, { "id": 650, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13664,7 +13664,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13672,11 +13672,11 @@ }, { "id": 651, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13685,7 +13685,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13693,11 +13693,11 @@ }, { "id": 652, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13706,7 +13706,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13714,11 +13714,11 @@ }, { "id": 653, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13727,7 +13727,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13735,11 +13735,11 @@ }, { "id": 654, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13748,7 +13748,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13756,11 +13756,11 @@ }, { "id": 655, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13769,7 +13769,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13777,11 +13777,11 @@ }, { "id": 656, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13790,7 +13790,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13798,11 +13798,11 @@ }, { "id": 657, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13811,7 +13811,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13819,11 +13819,11 @@ }, { "id": 658, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13832,7 +13832,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13840,11 +13840,11 @@ }, { "id": 659, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13853,7 +13853,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13861,11 +13861,11 @@ }, { "id": 660, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13874,7 +13874,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13882,11 +13882,11 @@ }, { "id": 661, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13895,7 +13895,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13903,11 +13903,11 @@ }, { "id": 662, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13916,7 +13916,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13924,11 +13924,11 @@ }, { "id": 663, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13937,7 +13937,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13945,11 +13945,11 @@ }, { "id": 664, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13958,7 +13958,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13966,11 +13966,11 @@ }, { "id": 665, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -13979,7 +13979,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -13987,11 +13987,11 @@ }, { "id": 666, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14000,7 +14000,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14008,11 +14008,11 @@ }, { "id": 667, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14021,7 +14021,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14029,11 +14029,11 @@ }, { "id": 668, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14042,7 +14042,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14050,11 +14050,11 @@ }, { "id": 669, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14063,7 +14063,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14071,11 +14071,11 @@ }, { "id": 670, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14084,7 +14084,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14092,11 +14092,11 @@ }, { "id": 671, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14105,7 +14105,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14113,11 +14113,11 @@ }, { "id": 672, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14126,7 +14126,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14134,11 +14134,11 @@ }, { "id": 673, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14147,7 +14147,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14155,11 +14155,11 @@ }, { "id": 674, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14168,7 +14168,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14176,11 +14176,11 @@ }, { "id": 675, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14189,7 +14189,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14197,11 +14197,11 @@ }, { "id": 676, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14210,7 +14210,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14218,11 +14218,11 @@ }, { "id": 677, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14231,7 +14231,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14239,11 +14239,11 @@ }, { "id": 678, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14252,7 +14252,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14260,11 +14260,11 @@ }, { "id": 679, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14273,7 +14273,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14281,11 +14281,11 @@ }, { "id": 680, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14294,7 +14294,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14302,11 +14302,11 @@ }, { "id": 681, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14315,7 +14315,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14323,11 +14323,11 @@ }, { "id": 682, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14336,7 +14336,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14344,11 +14344,11 @@ }, { "id": 683, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14357,7 +14357,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14365,11 +14365,11 @@ }, { "id": 684, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14378,7 +14378,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14386,11 +14386,11 @@ }, { "id": 685, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14399,7 +14399,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14407,11 +14407,11 @@ }, { "id": 686, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14420,7 +14420,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14428,11 +14428,11 @@ }, { "id": 687, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14441,7 +14441,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14449,11 +14449,11 @@ }, { "id": 688, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14462,7 +14462,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14470,11 +14470,11 @@ }, { "id": 689, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14483,7 +14483,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14491,11 +14491,11 @@ }, { "id": 690, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14504,7 +14504,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14512,11 +14512,11 @@ }, { "id": 691, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14525,7 +14525,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14533,11 +14533,11 @@ }, { "id": 692, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14546,7 +14546,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14554,11 +14554,11 @@ }, { "id": 693, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14567,7 +14567,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14575,11 +14575,11 @@ }, { "id": 694, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14588,7 +14588,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14596,11 +14596,11 @@ }, { "id": 695, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14609,7 +14609,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14617,11 +14617,11 @@ }, { "id": 696, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14630,7 +14630,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14638,11 +14638,11 @@ }, { "id": 697, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14651,7 +14651,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14659,11 +14659,11 @@ }, { "id": 698, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14672,7 +14672,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14680,11 +14680,11 @@ }, { "id": 699, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14693,7 +14693,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14701,11 +14701,11 @@ }, { "id": 700, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14714,7 +14714,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14722,11 +14722,11 @@ }, { "id": 701, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14735,7 +14735,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14743,11 +14743,11 @@ }, { "id": 702, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14756,7 +14756,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14764,11 +14764,11 @@ }, { "id": 703, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14777,7 +14777,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14785,11 +14785,11 @@ }, { "id": 704, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14798,7 +14798,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14806,11 +14806,11 @@ }, { "id": 705, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14819,7 +14819,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14827,11 +14827,11 @@ }, { "id": 706, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14840,7 +14840,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14848,11 +14848,11 @@ }, { "id": 707, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14861,7 +14861,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14869,11 +14869,11 @@ }, { "id": 708, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14882,7 +14882,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14890,11 +14890,11 @@ }, { "id": 709, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14903,7 +14903,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14911,11 +14911,11 @@ }, { "id": 710, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14924,7 +14924,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14932,11 +14932,11 @@ }, { "id": 711, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14945,7 +14945,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14953,11 +14953,11 @@ }, { "id": 712, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14966,7 +14966,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14974,11 +14974,11 @@ }, { "id": 713, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -14987,7 +14987,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -14995,11 +14995,11 @@ }, { "id": 714, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15008,7 +15008,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15016,11 +15016,11 @@ }, { "id": 715, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15029,7 +15029,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15037,11 +15037,11 @@ }, { "id": 716, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15050,7 +15050,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15058,11 +15058,11 @@ }, { "id": 717, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15071,7 +15071,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15079,11 +15079,11 @@ }, { "id": 718, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15092,7 +15092,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15100,11 +15100,11 @@ }, { "id": 719, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15113,7 +15113,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15121,11 +15121,11 @@ }, { "id": 720, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15134,7 +15134,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15142,11 +15142,11 @@ }, { "id": 721, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15155,7 +15155,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15163,11 +15163,11 @@ }, { "id": 722, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15176,7 +15176,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15184,11 +15184,11 @@ }, { "id": 723, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15197,7 +15197,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15205,11 +15205,11 @@ }, { "id": 724, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15218,7 +15218,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15226,11 +15226,11 @@ }, { "id": 725, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15239,7 +15239,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15247,11 +15247,11 @@ }, { "id": 726, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15260,7 +15260,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15268,11 +15268,11 @@ }, { "id": 727, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15281,7 +15281,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15289,11 +15289,11 @@ }, { "id": 728, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15302,7 +15302,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15310,11 +15310,11 @@ }, { "id": 729, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15323,7 +15323,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15331,11 +15331,11 @@ }, { "id": 730, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15344,7 +15344,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15352,11 +15352,11 @@ }, { "id": 731, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15365,7 +15365,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15373,11 +15373,11 @@ }, { "id": 732, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15386,7 +15386,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15394,11 +15394,11 @@ }, { "id": 733, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15407,7 +15407,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15415,11 +15415,11 @@ }, { "id": 734, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15428,7 +15428,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15436,11 +15436,11 @@ }, { "id": 735, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15449,7 +15449,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15457,11 +15457,11 @@ }, { "id": 736, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15470,7 +15470,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15478,11 +15478,11 @@ }, { "id": 737, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15491,7 +15491,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15499,11 +15499,11 @@ }, { "id": 738, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15512,7 +15512,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15520,11 +15520,11 @@ }, { "id": 739, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15533,7 +15533,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15541,11 +15541,11 @@ }, { "id": 740, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15554,7 +15554,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15562,11 +15562,11 @@ }, { "id": 741, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15575,7 +15575,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15583,11 +15583,11 @@ }, { "id": 742, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15596,7 +15596,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15604,11 +15604,11 @@ }, { "id": 743, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15617,7 +15617,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15625,11 +15625,11 @@ }, { "id": 744, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15638,7 +15638,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15646,11 +15646,11 @@ }, { "id": 745, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15659,7 +15659,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15667,11 +15667,11 @@ }, { "id": 746, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15680,7 +15680,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15688,11 +15688,11 @@ }, { "id": 747, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15701,7 +15701,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15709,11 +15709,11 @@ }, { "id": 748, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15722,7 +15722,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15730,11 +15730,11 @@ }, { "id": 749, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15743,7 +15743,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15751,11 +15751,11 @@ }, { "id": 750, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15764,7 +15764,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15772,11 +15772,11 @@ }, { "id": 751, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15785,7 +15785,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15793,11 +15793,11 @@ }, { "id": 752, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15806,7 +15806,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15814,11 +15814,11 @@ }, { "id": 753, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15827,7 +15827,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15835,11 +15835,11 @@ }, { "id": 754, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15848,7 +15848,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15856,11 +15856,11 @@ }, { "id": 755, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15869,7 +15869,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15877,11 +15877,11 @@ }, { "id": 756, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15890,7 +15890,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15898,11 +15898,11 @@ }, { "id": 757, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15911,7 +15911,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15919,11 +15919,11 @@ }, { "id": 758, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15932,7 +15932,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15940,11 +15940,11 @@ }, { "id": 759, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15953,7 +15953,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15961,11 +15961,11 @@ }, { "id": 760, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15974,7 +15974,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -15982,11 +15982,11 @@ }, { "id": 761, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -15995,7 +15995,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16003,11 +16003,11 @@ }, { "id": 762, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16016,7 +16016,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16024,11 +16024,11 @@ }, { "id": 763, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16037,7 +16037,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16045,11 +16045,11 @@ }, { "id": 764, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16058,7 +16058,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16066,11 +16066,11 @@ }, { "id": 765, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16079,7 +16079,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16087,11 +16087,11 @@ }, { "id": 766, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16100,7 +16100,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16108,11 +16108,11 @@ }, { "id": 767, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16121,7 +16121,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16129,11 +16129,11 @@ }, { "id": 768, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16142,7 +16142,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16150,11 +16150,11 @@ }, { "id": 769, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16163,7 +16163,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16171,11 +16171,11 @@ }, { "id": 770, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16184,7 +16184,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16192,11 +16192,11 @@ }, { "id": 771, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16205,7 +16205,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16213,11 +16213,11 @@ }, { "id": 772, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16226,7 +16226,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16234,11 +16234,11 @@ }, { "id": 773, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16247,7 +16247,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16255,11 +16255,11 @@ }, { "id": 774, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16268,7 +16268,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16276,11 +16276,11 @@ }, { "id": 775, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16289,7 +16289,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16297,11 +16297,11 @@ }, { "id": 776, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16310,7 +16310,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16318,11 +16318,11 @@ }, { "id": 777, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16331,7 +16331,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16339,11 +16339,11 @@ }, { "id": 778, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16352,7 +16352,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16360,11 +16360,11 @@ }, { "id": 779, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16373,7 +16373,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16381,11 +16381,11 @@ }, { "id": 780, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16394,7 +16394,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16402,11 +16402,11 @@ }, { "id": 781, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16415,7 +16415,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16423,11 +16423,11 @@ }, { "id": 782, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16436,7 +16436,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16444,11 +16444,11 @@ }, { "id": 783, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16457,7 +16457,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16465,11 +16465,11 @@ }, { "id": 784, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16478,7 +16478,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16486,11 +16486,11 @@ }, { "id": 785, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16499,7 +16499,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16507,11 +16507,11 @@ }, { "id": 786, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16520,7 +16520,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16528,11 +16528,11 @@ }, { "id": 787, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16541,7 +16541,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16549,11 +16549,11 @@ }, { "id": 788, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16562,7 +16562,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16570,11 +16570,11 @@ }, { "id": 789, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16583,7 +16583,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16591,11 +16591,11 @@ }, { "id": 790, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16604,7 +16604,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16612,11 +16612,11 @@ }, { "id": 791, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16625,7 +16625,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16633,11 +16633,11 @@ }, { "id": 792, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16646,7 +16646,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16654,11 +16654,11 @@ }, { "id": 793, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16667,7 +16667,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16675,11 +16675,11 @@ }, { "id": 794, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16688,7 +16688,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16696,11 +16696,11 @@ }, { "id": 795, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16709,7 +16709,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16717,11 +16717,11 @@ }, { "id": 796, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16730,7 +16730,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16738,11 +16738,11 @@ }, { "id": 797, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16751,7 +16751,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16759,11 +16759,11 @@ }, { "id": 798, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16772,7 +16772,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16780,11 +16780,11 @@ }, { "id": 799, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16793,7 +16793,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16801,11 +16801,11 @@ }, { "id": 800, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16814,7 +16814,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16822,11 +16822,11 @@ }, { "id": 801, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16835,7 +16835,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16843,11 +16843,11 @@ }, { "id": 802, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16856,7 +16856,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16864,11 +16864,11 @@ }, { "id": 803, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16877,7 +16877,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16885,11 +16885,11 @@ }, { "id": 804, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16898,7 +16898,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16906,11 +16906,11 @@ }, { "id": 805, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16919,7 +16919,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16927,11 +16927,11 @@ }, { "id": 806, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16940,7 +16940,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16948,11 +16948,11 @@ }, { "id": 807, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16961,7 +16961,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16969,11 +16969,11 @@ }, { "id": 808, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -16982,7 +16982,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -16990,11 +16990,11 @@ }, { "id": 809, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17003,7 +17003,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17011,11 +17011,11 @@ }, { "id": 810, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17024,7 +17024,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17032,11 +17032,11 @@ }, { "id": 811, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17045,7 +17045,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17053,11 +17053,11 @@ }, { "id": 812, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17066,7 +17066,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17074,11 +17074,11 @@ }, { "id": 813, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17087,7 +17087,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17095,11 +17095,11 @@ }, { "id": 814, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17108,7 +17108,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17116,11 +17116,11 @@ }, { "id": 815, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17129,7 +17129,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17137,11 +17137,11 @@ }, { "id": 816, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17150,7 +17150,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17158,11 +17158,11 @@ }, { "id": 817, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17171,7 +17171,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17179,11 +17179,11 @@ }, { "id": 818, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17192,7 +17192,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17200,11 +17200,11 @@ }, { "id": 819, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17213,7 +17213,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17221,11 +17221,11 @@ }, { "id": 820, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17234,7 +17234,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17242,11 +17242,11 @@ }, { "id": 821, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17255,7 +17255,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17263,11 +17263,11 @@ }, { "id": 822, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17276,7 +17276,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17284,11 +17284,11 @@ }, { "id": 823, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17297,7 +17297,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17305,11 +17305,11 @@ }, { "id": 824, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17318,7 +17318,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17326,11 +17326,11 @@ }, { "id": 825, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17339,7 +17339,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17347,11 +17347,11 @@ }, { "id": 826, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17360,7 +17360,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17368,11 +17368,11 @@ }, { "id": 827, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17381,7 +17381,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17389,11 +17389,11 @@ }, { "id": 828, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17402,7 +17402,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17410,11 +17410,11 @@ }, { "id": 829, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17423,7 +17423,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17431,11 +17431,11 @@ }, { "id": 830, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17444,7 +17444,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17452,11 +17452,11 @@ }, { "id": 831, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17465,7 +17465,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17473,11 +17473,11 @@ }, { "id": 832, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17486,7 +17486,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17494,11 +17494,11 @@ }, { "id": 833, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17507,7 +17507,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17515,11 +17515,11 @@ }, { "id": 834, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17528,7 +17528,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17536,11 +17536,11 @@ }, { "id": 835, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17549,7 +17549,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17557,11 +17557,11 @@ }, { "id": 836, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17570,7 +17570,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17578,11 +17578,11 @@ }, { "id": 837, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17591,7 +17591,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17599,11 +17599,11 @@ }, { "id": 838, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17612,7 +17612,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17620,11 +17620,11 @@ }, { "id": 839, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17633,7 +17633,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17641,11 +17641,11 @@ }, { "id": 840, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17654,7 +17654,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17662,11 +17662,11 @@ }, { "id": 841, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17675,7 +17675,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17683,11 +17683,11 @@ }, { "id": 842, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17696,7 +17696,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17704,11 +17704,11 @@ }, { "id": 843, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17717,7 +17717,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17725,11 +17725,11 @@ }, { "id": 844, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17738,7 +17738,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17746,11 +17746,11 @@ }, { "id": 845, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17759,7 +17759,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17767,11 +17767,11 @@ }, { "id": 846, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17780,7 +17780,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17788,11 +17788,11 @@ }, { "id": 847, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17801,7 +17801,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17809,11 +17809,11 @@ }, { "id": 848, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17822,7 +17822,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17830,11 +17830,11 @@ }, { "id": 849, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17843,7 +17843,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17851,11 +17851,11 @@ }, { "id": 850, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17864,7 +17864,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17872,11 +17872,11 @@ }, { "id": 851, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17885,7 +17885,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17893,11 +17893,11 @@ }, { "id": 852, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17906,7 +17906,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17914,11 +17914,11 @@ }, { "id": 853, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17927,7 +17927,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17935,11 +17935,11 @@ }, { "id": 854, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17948,7 +17948,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17956,11 +17956,11 @@ }, { "id": 855, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17969,7 +17969,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17977,11 +17977,11 @@ }, { "id": 856, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -17990,7 +17990,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -17998,11 +17998,11 @@ }, { "id": 857, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18011,7 +18011,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18019,11 +18019,11 @@ }, { "id": 858, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18032,7 +18032,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18040,11 +18040,11 @@ }, { "id": 859, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18053,7 +18053,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18061,11 +18061,11 @@ }, { "id": 860, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18074,7 +18074,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18082,11 +18082,11 @@ }, { "id": 861, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18095,7 +18095,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18103,11 +18103,11 @@ }, { "id": 862, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18116,7 +18116,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18124,11 +18124,11 @@ }, { "id": 863, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18137,7 +18137,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18145,11 +18145,11 @@ }, { "id": 864, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18158,7 +18158,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18166,11 +18166,11 @@ }, { "id": 865, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18179,7 +18179,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18187,11 +18187,11 @@ }, { "id": 866, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18200,7 +18200,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18208,11 +18208,11 @@ }, { "id": 867, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18221,7 +18221,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18229,11 +18229,11 @@ }, { "id": 868, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18242,7 +18242,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18250,11 +18250,11 @@ }, { "id": 869, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18263,7 +18263,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18271,11 +18271,11 @@ }, { "id": 870, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18284,7 +18284,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18292,11 +18292,11 @@ }, { "id": 871, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18305,7 +18305,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18313,11 +18313,11 @@ }, { "id": 872, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18326,7 +18326,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18334,11 +18334,11 @@ }, { "id": 873, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18347,7 +18347,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18355,11 +18355,11 @@ }, { "id": 874, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18368,7 +18368,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18376,11 +18376,11 @@ }, { "id": 875, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18389,7 +18389,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18397,11 +18397,11 @@ }, { "id": 876, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18410,7 +18410,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18418,11 +18418,11 @@ }, { "id": 877, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18431,7 +18431,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18439,11 +18439,11 @@ }, { "id": 878, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18452,7 +18452,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18460,11 +18460,11 @@ }, { "id": 879, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18473,7 +18473,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18481,11 +18481,11 @@ }, { "id": 880, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18494,7 +18494,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18502,11 +18502,11 @@ }, { "id": 881, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18515,7 +18515,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18523,11 +18523,11 @@ }, { "id": 882, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18536,7 +18536,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18544,11 +18544,11 @@ }, { "id": 883, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18557,7 +18557,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18565,11 +18565,11 @@ }, { "id": 884, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18578,7 +18578,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18586,11 +18586,11 @@ }, { "id": 885, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18599,7 +18599,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18607,11 +18607,11 @@ }, { "id": 886, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18620,7 +18620,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18628,11 +18628,11 @@ }, { "id": 887, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18641,7 +18641,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18649,11 +18649,11 @@ }, { "id": 888, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18662,7 +18662,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18670,11 +18670,11 @@ }, { "id": 889, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18683,7 +18683,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18691,11 +18691,11 @@ }, { "id": 890, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18704,7 +18704,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18712,11 +18712,11 @@ }, { "id": 891, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18725,7 +18725,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18733,11 +18733,11 @@ }, { "id": 892, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18746,7 +18746,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18754,11 +18754,11 @@ }, { "id": 893, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18767,7 +18767,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18775,11 +18775,11 @@ }, { "id": 894, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18788,7 +18788,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18796,11 +18796,11 @@ }, { "id": 895, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18809,7 +18809,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18817,11 +18817,11 @@ }, { "id": 896, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18830,7 +18830,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18838,11 +18838,11 @@ }, { "id": 897, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18851,7 +18851,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18859,11 +18859,11 @@ }, { "id": 898, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18872,7 +18872,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18880,11 +18880,11 @@ }, { "id": 899, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18893,7 +18893,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18901,11 +18901,11 @@ }, { "id": 900, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18914,7 +18914,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18922,11 +18922,11 @@ }, { "id": 901, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18935,7 +18935,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18943,11 +18943,11 @@ }, { "id": 902, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18956,7 +18956,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18964,11 +18964,11 @@ }, { "id": 903, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18977,7 +18977,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -18985,11 +18985,11 @@ }, { "id": 904, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -18998,7 +18998,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19006,11 +19006,11 @@ }, { "id": 905, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19019,7 +19019,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19027,11 +19027,11 @@ }, { "id": 906, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19040,7 +19040,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19048,11 +19048,11 @@ }, { "id": 907, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19061,7 +19061,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19069,11 +19069,11 @@ }, { "id": 908, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19082,7 +19082,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19090,11 +19090,11 @@ }, { "id": 909, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19103,7 +19103,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19111,11 +19111,11 @@ }, { "id": 910, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19124,7 +19124,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19132,11 +19132,11 @@ }, { "id": 911, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19145,7 +19145,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19153,11 +19153,11 @@ }, { "id": 912, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19166,7 +19166,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19174,11 +19174,11 @@ }, { "id": 913, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19187,7 +19187,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19195,11 +19195,11 @@ }, { "id": 914, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19208,7 +19208,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19216,11 +19216,11 @@ }, { "id": 915, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19229,7 +19229,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19237,11 +19237,11 @@ }, { "id": 916, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19250,7 +19250,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19258,11 +19258,11 @@ }, { "id": 917, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19271,7 +19271,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19279,11 +19279,11 @@ }, { "id": 918, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19292,7 +19292,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19300,11 +19300,11 @@ }, { "id": 919, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19313,7 +19313,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19321,11 +19321,11 @@ }, { "id": 920, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19334,7 +19334,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19342,11 +19342,11 @@ }, { "id": 921, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19355,7 +19355,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19363,11 +19363,11 @@ }, { "id": 922, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19376,7 +19376,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19384,11 +19384,11 @@ }, { "id": 923, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19397,7 +19397,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19405,11 +19405,11 @@ }, { "id": 924, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19418,7 +19418,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19426,11 +19426,11 @@ }, { "id": 925, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19439,7 +19439,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19447,11 +19447,11 @@ }, { "id": 926, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19460,7 +19460,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19468,11 +19468,11 @@ }, { "id": 927, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19481,7 +19481,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19489,11 +19489,11 @@ }, { "id": 928, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19502,7 +19502,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19510,11 +19510,11 @@ }, { "id": 929, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19523,7 +19523,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19531,11 +19531,11 @@ }, { "id": 930, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19544,7 +19544,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19552,11 +19552,11 @@ }, { "id": 931, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19565,7 +19565,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19573,11 +19573,11 @@ }, { "id": 932, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19586,7 +19586,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19594,11 +19594,11 @@ }, { "id": 933, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19607,7 +19607,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19615,11 +19615,11 @@ }, { "id": 934, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19628,7 +19628,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19636,11 +19636,11 @@ }, { "id": 935, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19649,7 +19649,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19657,11 +19657,11 @@ }, { "id": 936, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19670,7 +19670,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19678,11 +19678,11 @@ }, { "id": 937, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19691,7 +19691,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19699,11 +19699,11 @@ }, { "id": 938, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19712,7 +19712,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19720,11 +19720,11 @@ }, { "id": 939, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19733,7 +19733,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19741,11 +19741,11 @@ }, { "id": 940, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19754,7 +19754,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19762,11 +19762,11 @@ }, { "id": 941, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19775,7 +19775,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19783,11 +19783,11 @@ }, { "id": 942, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19796,7 +19796,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19804,11 +19804,11 @@ }, { "id": 943, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19817,7 +19817,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19825,11 +19825,11 @@ }, { "id": 944, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19838,7 +19838,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19846,11 +19846,11 @@ }, { "id": 945, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19859,7 +19859,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19867,11 +19867,11 @@ }, { "id": 946, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19880,7 +19880,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19888,11 +19888,11 @@ }, { "id": 947, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19901,7 +19901,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19909,11 +19909,11 @@ }, { "id": 948, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19922,7 +19922,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19930,11 +19930,11 @@ }, { "id": 949, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19943,7 +19943,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19951,11 +19951,11 @@ }, { "id": 950, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19964,7 +19964,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19972,11 +19972,11 @@ }, { "id": 951, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -19985,7 +19985,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -19993,11 +19993,11 @@ }, { "id": 952, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20006,7 +20006,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20014,11 +20014,11 @@ }, { "id": 953, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20027,7 +20027,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20035,11 +20035,11 @@ }, { "id": 954, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20048,7 +20048,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20056,11 +20056,11 @@ }, { "id": 955, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20069,7 +20069,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20077,11 +20077,11 @@ }, { "id": 956, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20090,7 +20090,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20098,11 +20098,11 @@ }, { "id": 957, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20111,7 +20111,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20119,11 +20119,11 @@ }, { "id": 958, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20132,7 +20132,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20140,11 +20140,11 @@ }, { "id": 959, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20153,7 +20153,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20161,11 +20161,11 @@ }, { "id": 960, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20174,7 +20174,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20182,11 +20182,11 @@ }, { "id": 961, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20195,7 +20195,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20203,11 +20203,11 @@ }, { "id": 962, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20216,7 +20216,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20224,11 +20224,11 @@ }, { "id": 963, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20237,7 +20237,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20245,11 +20245,11 @@ }, { "id": 964, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20258,7 +20258,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20266,11 +20266,11 @@ }, { "id": 965, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20279,7 +20279,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20287,11 +20287,11 @@ }, { "id": 966, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20300,7 +20300,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20308,11 +20308,11 @@ }, { "id": 967, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20321,7 +20321,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20329,11 +20329,11 @@ }, { "id": 968, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20342,7 +20342,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20350,11 +20350,11 @@ }, { "id": 969, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20363,7 +20363,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20371,11 +20371,11 @@ }, { "id": 970, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20384,7 +20384,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20392,11 +20392,11 @@ }, { "id": 971, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20405,7 +20405,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20413,11 +20413,11 @@ }, { "id": 972, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20426,7 +20426,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20434,11 +20434,11 @@ }, { "id": 973, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20447,7 +20447,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20455,11 +20455,11 @@ }, { "id": 974, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20468,7 +20468,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20476,11 +20476,11 @@ }, { "id": 975, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20489,7 +20489,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20497,11 +20497,11 @@ }, { "id": 976, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20510,7 +20510,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20518,11 +20518,11 @@ }, { "id": 977, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20531,7 +20531,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20539,11 +20539,11 @@ }, { "id": 978, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20552,7 +20552,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20560,11 +20560,11 @@ }, { "id": 979, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20573,7 +20573,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20581,11 +20581,11 @@ }, { "id": 980, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20594,7 +20594,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20602,11 +20602,11 @@ }, { "id": 981, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20615,7 +20615,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20623,11 +20623,11 @@ }, { "id": 982, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20636,7 +20636,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20644,11 +20644,11 @@ }, { "id": 983, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20657,7 +20657,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20665,11 +20665,11 @@ }, { "id": 984, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20678,7 +20678,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20686,11 +20686,11 @@ }, { "id": 985, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20699,7 +20699,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20707,11 +20707,11 @@ }, { "id": 986, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20720,7 +20720,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20728,11 +20728,11 @@ }, { "id": 987, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20741,7 +20741,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20749,11 +20749,11 @@ }, { "id": 988, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20762,7 +20762,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20770,11 +20770,11 @@ }, { "id": 989, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20783,7 +20783,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20791,11 +20791,11 @@ }, { "id": 990, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20804,7 +20804,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20812,11 +20812,11 @@ }, { "id": 991, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20825,7 +20825,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20833,11 +20833,11 @@ }, { "id": 992, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20846,7 +20846,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20854,11 +20854,11 @@ }, { "id": 993, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20867,7 +20867,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20875,11 +20875,11 @@ }, { "id": 994, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20888,7 +20888,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20896,11 +20896,11 @@ }, { "id": 995, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20909,7 +20909,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20917,11 +20917,11 @@ }, { "id": 996, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20930,7 +20930,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20938,11 +20938,11 @@ }, { "id": 997, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20951,7 +20951,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20959,11 +20959,11 @@ }, { "id": 998, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20972,7 +20972,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, @@ -20980,11 +20980,11 @@ }, { "id": 999, - "title": "差异化构建打包,提升多版本应用开发效率", - "brief": "差异化构建打包功能,在面对多场景开发时,开发者无需创建多个工程,可以在同一个工程中,创建多个product和target,在target中通过少量代码的差异化配置处理,再打包到不同的product中,生成对应场景的APP,这样的方式可以让代码、资源文件等高效复用,从而提升多版本应用的开发效率。", - "headerImageUrl": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "title": "Huawei Developer Day I Singapore", + "brief": "Sign up and learn about growth of Huawei Mobile ecosystem and potential partnership opportunities in Singapore", + "headerImageUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "type": "article", - "webUrl": "https://mp.weixin.qq.com/s/8XtgZ-k0mGXCjKHfSXFoOg", + "webUrl": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "publishDate": "2022-12-09T00:09:00.000Z", "topics": [ "DevEco Studio" @@ -20993,7 +20993,7 @@ "collectionCount": 25, "likesCount": 43, "tag": 0, - "bannerSrc": "https://agc-storage-drcn.platform.dbankcloud.cn/v0/mydatabase-ymn5d/20000020.png?token=483d1314-2e43-4df8-af75-9e72596117e8", + "bannerSrc": "https://alliance-communityfile-drcn.dbankcdn.com/FileServer/getFile/cmtyPub/011/111/111/0000000000011111111.20210812153006.19036712329616269503297775966549:50520811073032:2800:74A29B5C2732F774A4394EC7D08A3691D84E7BF93C9A60FC64BBC1C3DD38194E.jpg", "mediaSrc": "https://ops-dra.agcstorage.link/v0/my-cloud-mvc5l/bird.mp4?token=be902a58-4f4c-4774-844b-4e21dcd0a5a2", "isLiked": null, "isCollected": null, diff --git a/screenshots/device/ForEach.png b/screenshots/device/ForEach.png new file mode 100644 index 0000000000000000000000000000000000000000..5490b8dc18c6d1ebe336766fce0b4f46c25bee4a GIT binary patch literal 110659 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%0AlT+Xn<5~X2Hv4A zaU_QfEj2h@Tz{AJ#<;+fkL5-VOC8+(!e!UO`V()&?qHN(gH^9t6Z!hNvu&0GhuqSB ziB;v_)qUL;w$k!eh0wB$<>@*p-uBmOT+~md8*oMb^qApn#8|DwA;DJ|!_rk0a?qCw@+UAw^j7uChagS*__dg4X=-W@ik^woaVM+9 z8n*1JrwbeB50Ns(WI{>ES%kIUzIk77Zy46?3A^eUn>9kLDl1YywA~M0=2JL76@uKi z;)stci0OLxuLK^A=_mQG%szU4a&kT%Lw`C(5Iq-`2*kl!S_ZAM%yiX&H!bU&JoUE1 zhl=4O9hH5muZ*)kEv?)1_D55~wWxDiCq-#oOF_oah=@cJW|Yg~i*EKuEN_JjeJEjE z8%|d#{CszK9>3klYFODp^PK-3%WNFF1J-h6hKyQ!1!jfTk-+ldAq&v}XP1CZ;sQov zQjY0iJ)9xa+o5jL61?PCc@5m&U-^j$&9*J;Iv#K5)>dHUnk*7>Z2YT_1g@YvL9_XN zI$c$2tq2G5w+}=NOe~38!%UwCR=zfAIqR+nJ%36U@!fZ_@^$))0u2+6%yYZvRx@&E zAXL~~sLPmii5!V+Cx_RMxUzgVJih<&$a00wWU21Qs4ijttKT}g2D?7$Rp0M!e&{=Q zoEW@U34NqT8vdzE(2AU26I)D!Rm}QpQMSwZPxPNECN7DyRvzxD*HWNIdImyK{ZKp% z4Vm)kU5ZZly_D+lUUea}j4U3z&}ia2Ih0dA7}rHOJBO5o4ShB=7A0N~R#i=5voy-L z+y)Ni#aU{hB;1wXWDYsFlPD*uO266)W;*AF6!8eioSEsF8+4XWDJ7t38)gtJ;UbT7 z{~WuCX`TP`R<*y%|CvhTHW%|moErIf|0~BfygEA@qRR~Z=geV)?OAhcYs9wgzTxZh z#o>7!19Olw!U{USz>iOYmAb>fnMPocmIXw5&xWxGI*a+-UZm3n+%j;P`2Ln$PhG$s zZd%n9xHb7SyVcv4ZZHaYTr@QGVp6P`YHr5FOx~L1bGJ?Crs}r!pFPi2ACQEhE0iQq zZt(I~X5`KZ*bJJZ3=IDCrcZ6iIgauy)mqDU)MXI&TZX&9q-`euFE$KBMT$2a961mo z7mmV5>stT`^W1S-ZjswPN2W~;V|V{ZGRO83<|?d@OB)WiqzeDkFjr!(HWinI=rBY- z;HjEe^z0wh(;I3tb%Oi_BOGQMubOQyFVyj~3ZlbF!6YfQq-Nts(ZS}msTmdp8}dgA z(cG@!IZnxNvF|)xn%^b*F=_0p8T`hvRNEk7C(-&<%z+}WBPo_qN+DKwJ_w#UDP{}C z=QwI{6PWYgZ~3tr!=(ho5kCcN7!@HZ2LEEF-lRsxdSPL$FWz<&B8OmlR6@4GOcY3Q z_J#smL<;c)zCNfLNv%uKpS8*!LEc|8ZMV3d+bJNQu*eBRUCFoaFQKPjPXQ|i>S`PsVw)?NrUL<3sN;#i%2ZUD& zL&=@kwE@Gp;=JHcf@_DZ{FgMSEf8#EXcIr>mp1JecD3c^`c!@L7r`d8L181G5r?uE0 z6(FPtx?kcdmxxSN(pG4abxcUlRKp?BVi5y6Y0e1{m%fqP^ zl-sL0cM{@UUd+!7Wqw=lR-XW{kAWHYCu2(=hx*j|A#cahK333hoOx04XsnFl1mEi~ zt83Gm{^ZZNFiHI`B(=sYr}{bZAz_@tS9eAc>EJ^pvjzs;^zZPi=xwfww+#GXV;%cx zfBvfmo83=j_nOT@UCOi2hP)E+-hxM%WJh6w3jA(#hP$_Hh7K(4*<}VS4q#($Y`<=hus>VH7xJ3>LOBRyVlqBJ1fIb``tl%k_b z)QuFalGI@vP@g(Curugr6^IO$o0quJ{KP`WiX*4LzV}1QT-Y}ru49RWqbW&8MZi`Y zK3 Date: Mon, 28 Oct 2024 10:13:18 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E6=B7=BB=E5=8A=A0reademe=5Fen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README_EN.md | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 README_EN.md diff --git a/README_EN.md b/README_EN.md new file mode 100644 index 0000000..de964e8 --- /dev/null +++ b/README_EN.md @@ -0,0 +1,77 @@ +# List Optimization + +### Overview +This sample demonstrates the use of **ForEach** for rendering a long list, and contrasts it with **LazyForEach**, which leverages caching of list items and component reuse, to optimize the performance of long list. The comparison includes metrics such as total display time and frame loss rate. + +### Preview +| ForEach Page | LazyForEach Page | +|-------------------------------------|-----------------------------------------| +| ![](screenshots/device/ForEach.png) | ![](screenshots/device/LazyForEach.png) | + + +How to Use + +1. Start the app, and use **Frame** in **Profiler** of DevEco Studio to record the frame loss rate of the app in **ForEach** and **LazyForEach**. + +2. Tap **ForEach** and **LazyForEach**, and record the time used to display all the information. + +3. Tap **ForEach** and **LazyForEach**, and record the frame loss rate. + +4. To facilitate comparison, data files of different sizes are provided in the **src/main/resources/rawfile** directory. + + +### Project Directory +``` +├──entry/src/main/ets/ +│ ├──components +│ │ ├──ArticleCardView.ets +│ │ └──ReusableArticleCardView.ets +│ ├──constants +│ │ └──Constants.ets +│ ├──entryability +│ │ └──EntryAbility.ets +│ ├──model +│ │ ├──ArticleListData.ets +│ │ └──LearningResource.ets +│ ├──pages +│ │ ├──ForEachListPage.ets +│ │ ├──Index.ets +│ │ └──LazyForEachListPage.ets +│ └──utils +│ ├──Logger.ets +│ └──ObservedArray.ets +└──entry/src/main/resources +``` + +### How to Implement +The implementation of the long **ForEach** list is as follows: + +1. Load list data locally to simulate a data request. + +2. Use **ForEach** and the list item component to implement a long list. + +The implementation of the long **LazyForEach** list is as follows: + +1. Implement the **IDataSource** interface. + +2. Load list data locally to simulate a data request. + +3. Implement the **LazyForEach** list item component. Call **cachedCount** of **LazyForEach**. Use the @Reuseable annotation to reuse components to maximize the optimization. + + +### Required Permissions +**ohos.permission.INTERNET**: allows an app to access Internet. + +### Dependencies + +N/A + +### Constraints + +1. The sample app is supported only on Huawei phones running the standard system. + +2. The HarmonyOS version must be HarmonyOS NEXT Developer Beta1 or later. + +3. The DevEco Studio version must be DevEco Studio NEXT Developer Beta1 or later. + +4. The HarmonyOS SDK version must be HarmonyOS NEXT Developer Beta1 SDK or later. -- Gitee From 7d584cd69cb89719e08311b483cf62f568ec4f48 Mon Sep 17 00:00:00 2001 From: Ryan <865833921@qq.com> Date: Wed, 6 Nov 2024 15:40:52 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=92=8Creadme=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 22 +++++++++---------- entry/src/main/module.json5 | 4 +--- .../main/resources/zh_CN/element/string.json | 2 +- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 65554d7..09f899d 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,9 @@ 1.启动应用后,在DevEco Studio启动Profiler中的Frame用来记录应用在ForEach和LazyForEach的丢帧率等数据; -2.分别点击【ForEach】和【LazyForEach】后,分别记录完全显示所用时间; +2.分别点击【ForEach】和【LazyForEach】后,分别记录完全显示所用时间。完全显示所用时间可以通过Launch进行录制分析,详情操作可以参考[Launch分析](https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/ide-insight-session-launch-V5)。 -3.分别点击【ForEach】和【LazyForEach】后,分别记录滑动的丢帧率。 +3.分别点击【ForEach】和【LazyForEach】后,分别记录滑动的丢帧率。滑动丢帧可以通过Frame进行录制分析,详情操作可以参考[Frame分析](https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/ide-insight-session-frame-V5)。 4.为方便对比实验,本Sample在src/main/resources/rawfile中提供了不同大小的数据文件。 @@ -24,19 +24,19 @@ ``` ├──entry/src/main/ets/ │ ├──components -│ │ ├──ArticleCardView.ets -│ │ └──ReusableArticleCardView.ets +│ │ ├──ArticleCardView.ets // 文章列表项组件 +│ │ └──ReusableArticleCardView.ets // 可复用文章列表项组件 │ ├──constants -│ │ └──Constants.ets +│ │ └──Constants.ets // 公共常量类 │ ├──entryability -│ │ └──EntryAbility.ets +│ │ └──EntryAbility.ets // 程序入口类 │ ├──model -│ │ ├──ArticleListData.ets -│ │ └──LearningResource.ets +│ │ ├──ArticleListData.ets // 列表的DataSource +│ │ └──LearningResource.ets // 列表数据类 │ ├──pages -│ │ ├──ForEachListPage.ets -│ │ ├──Index.ets -│ │ └──LazyForEachListPage.ets +│ │ ├──ForEachListPage.ets // ForEach列表页面 +│ │ ├──Index.ets // 首页页面 +│ │ └──LazyForEachListPage.ets // LazyForEach列表页面 │ └──utils │ ├──Logger.ets │ └──ObservedArray.ets diff --git a/entry/src/main/module.json5 b/entry/src/main/module.json5 index 7d86119..73f9c2a 100644 --- a/entry/src/main/module.json5 +++ b/entry/src/main/module.json5 @@ -5,9 +5,7 @@ "description": "$string:module_desc", "mainElement": "EntryAbility", "deviceTypes": [ - "phone", - "tablet", - "2in1" + "phone" ], "deliveryWithInstall": true, "installationFree": false, diff --git a/entry/src/main/resources/zh_CN/element/string.json b/entry/src/main/resources/zh_CN/element/string.json index ff05d99..2bdfa0c 100644 --- a/entry/src/main/resources/zh_CN/element/string.json +++ b/entry/src/main/resources/zh_CN/element/string.json @@ -10,7 +10,7 @@ }, { "name": "EntryAbility_label", - "value": "ListOptimization" + "value": "长列表性能对比" }, { "name": "foreach", -- Gitee From 8c76383ee45e505e81664800c46a8446b004d375 Mon Sep 17 00:00:00 2001 From: Ryan <865833921@qq.com> Date: Wed, 6 Nov 2024 15:46:00 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=92=8Creadme=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09f899d..8854a4d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ 3.分别点击【ForEach】和【LazyForEach】后,分别记录滑动的丢帧率。滑动丢帧可以通过Frame进行录制分析,详情操作可以参考[Frame分析](https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/ide-insight-session-frame-V5)。 -4.为方便对比实验,本Sample在src/main/resources/rawfile中提供了不同大小的数据文件。 +4.为方便对比实验,本Sample在src/main/resources/rawfile中提供了不同大小的数据文件。开发者可以在getArticleModelObjFromJSON方法中更换数据文件来对比不同数据量下ForEach和LazyForEach的性能。 ### 工程目录 -- Gitee From 2873170a0118deb7f51a75d28f18a5a66380fec8 Mon Sep 17 00:00:00 2001 From: Ryan <865833921@qq.com> Date: Wed, 6 Nov 2024 16:33:39 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E5=BA=9F=E5=BC=83=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- entry/src/main/ets/pages/ForEachListPage.ets | 2 +- entry/src/main/ets/pages/LazyForEachListPage.ets | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8854a4d..babf546 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,8 @@ │ │ ├──Index.ets // 首页页面 │ │ └──LazyForEachListPage.ets // LazyForEach列表页面 │ └──utils -│ ├──Logger.ets -│ └──ObservedArray.ets +│ ├──Logger.ets // 日志工具类 +│ └──ObservedArray.ets // 数组工具类 └──entry/src/main/resources ``` diff --git a/entry/src/main/ets/pages/ForEachListPage.ets b/entry/src/main/ets/pages/ForEachListPage.ets index ace5838..c4bc300 100644 --- a/entry/src/main/ets/pages/ForEachListPage.ets +++ b/entry/src/main/ets/pages/ForEachListPage.ets @@ -23,7 +23,7 @@ function bufferToString(buffer: ArrayBufferLike): string { let textDecoder = util.TextDecoder.create('utf-8', { ignoreBOM: true }); - let resultPut = textDecoder.decodeWithStream(new Uint8Array(buffer), { + let resultPut = textDecoder.decodeToString(new Uint8Array(buffer), { stream: true }); return resultPut; diff --git a/entry/src/main/ets/pages/LazyForEachListPage.ets b/entry/src/main/ets/pages/LazyForEachListPage.ets index 2a9c588..302fb59 100644 --- a/entry/src/main/ets/pages/LazyForEachListPage.ets +++ b/entry/src/main/ets/pages/LazyForEachListPage.ets @@ -25,7 +25,7 @@ function bufferToString(buffer: ArrayBufferLike): string { let textDecoder = util.TextDecoder.create('utf-8', { ignoreBOM: true }); - let resultPut = textDecoder.decodeWithStream(new Uint8Array(buffer), { + let resultPut = textDecoder.decodeToString(new Uint8Array(buffer), { stream: true }); return resultPut; -- Gitee

Q~e5I^2>An-M4gaIeejc)TNqxN@VI;8bl3Pm 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 AJpcdz literal 0 HcmV?d00001 diff --git a/screenshots/device/LazyForEach.png b/screenshots/device/LazyForEach.png new file mode 100644 index 0000000000000000000000000000000000000000..6e69594cfcf0b1389a5fe3c3c8e28e41e9a037c1 GIT binary patch literal 112403 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%0AvvTl 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