diff --git a/README.md b/README.md index aa90de697fb978812d0f8ee82028cbde8d4ac3f8..babf5461479637102954098fca940ffb689cffd9 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) | 使用说明: @@ -38,7 +40,7 @@ │ └──utils │ ├──Logger.ets // 日志工具类 │ └──ObservedArray.ets // 数组工具类 -└──entry/src/main/resources +└──entry/src/main/resources ``` ### 具体实现 diff --git a/README_EN.md b/README_EN.md new file mode 100644 index 0000000000000000000000000000000000000000..de964e8f1abebfecb812996024804a1d127be115 --- /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. diff --git a/entry/src/main/ets/entryability/EntryAbility.ets b/entry/src/main/ets/entryability/EntryAbility.ets index 90cb89675c1f165f5858655a0a678178ab00fcaf..5aab3743e8628e14cf25cb69f791d19d0a700b75 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 2c2e7e0ca0170e3e17eed74e36794321408836f9..c4bc300c1094e309ce096a9c015775d8f0cdbdfa 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 d17f8e8cdbdbe79b1b5a90daa8c14d333baacc18..4151245c881deda3387b81250bd720bd82e53eac 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 d5dcac682207efb6bb6698a1b049128c03cfe245..302fb59aa919c01d66020e280308ff551ac0c838 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 2698d1003f32af332f9400d754c6bb11706845fa..88bbf16263787047aa170a6b8d693f329ca1b2d4 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 5ed3d0ea8a774639983606a153ee44f191c3050c..b5fda04eecccff5013a70950b5c30b1d88f505de 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 eadf234e8a130930911c098b9cb6f3580404fe19..2e5e242f0e1a363f84c3d93bb81bd26c032b13bf 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 d9baeadd65bc4c147037dc287a8ab6e08f944589..329c3a48189cd1c42bdfe570a14049f1213b425d 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 Binary files /dev/null and b/screenshots/device/ForEach.png differ diff --git a/screenshots/device/LazyForEach.png b/screenshots/device/LazyForEach.png new file mode 100644 index 0000000000000000000000000000000000000000..6e69594cfcf0b1389a5fe3c3c8e28e41e9a037c1 Binary files /dev/null and b/screenshots/device/LazyForEach.png differ