Updates
Huawei DevEco Studio 2.2 beta 1 released
Huawei has officially released the DevEco Studio version 2.2 Beta 1. The latest update brings two new features, low-code development, and remote real phone. The following is an introduction to the update.
Highlight 1: Low-code development for JS framework
Low-code development is a new visual interface development method for JS framework added by DevEco Studio 2.2 Beta1. It follows the HarmonyOS JS development specification and has rich page editing functions. Developers can complete interface development and JS logic association on low-code pages by dragging and copying components, which greatly reduces the developer’s hands-on cost and improves the efficiency of user interface development.
Official website development specifications:
https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ui-js-overview-0000000000500376
Developers can click the right mouse button under the directory “js>pages” in the project and select New> JS Visual to create a new low-code page.
When creating a low-code page (as shown in Figure 1), the system will automatically generate the corresponding visual file and js file, and the directory structure of the two files is the same. Among them, the visual file stores the data model of the low-code page. Double-click the file to open the low-code page for visual development. The js file describes the behavior logic of the low-code page, and defines all the logical relationships used in the page, such as data, events, etc.
Note: When using low-code page development, the same level directory of the associated js file, that is, js>default>pages>page directory cannot contain hml or css files, otherwise the compilation error will be reported.
Demonstration of creating low-code pages
The interface after the low-code page is successfully created is shown in Figure 2, which consists of five parts: component bar, component tree, canvas, function panel, and attribute style bar. The relevant operations performed by the developer on the low-code page will be saved in the visual file.
Low code page
1. Low-code page composition:
â‘ Component bar (UI Control)
Located at the upper left of the low-code page, select the component in the component bar and drag it to the middle canvas to add a component.
â‘¡ Component Tree
Located at the bottom left of the low-code page, developers can visually see the hierarchical structure, summary information, and error prompts of the components through the component tree. The developer selects the component in the component tree to realize the rapid positioning of the component in the canvas.
Search boxHongmeng HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Enter the control type in the search box, such as “Image”, and all the components of the “Image” type are displayed in the component tree.
Drop-down boxHongmeng HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Click the drop-down box of the nested component to show/hide the sub-components in the nested component in the component tree.
Eye icon HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Click the eye icon of a non-nested component, the component will be hidden in the canvas, and the eye icon will changeHongmeng HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine; click the icon again, the component will reappear in the canvas, and the eye icon will change backHongmeng HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine; click the eye of the nested component The icon, the component and its sub-components will be hidden/displayed in the canvas at the same time.
Summary information: For components such as Div and Image, the summary information bar displays the ID of the component; for components such as Text, Button, Input, and Span that can set the text content, the summary information bar displays the corresponding text content.
Error promptHongmeng HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: When the component has an error, a small red dot appears on the right side of the component, click the small red dot with the mouse, and detailed error information of all components appears. The scope of error information includes: data binding and method binding errors.
â‘¢ Canvas
Located in the middle of the low-code page, developers can visually edit the components in this area, such as drag and drop, copy, cut, paste, etc., so as to achieve the needs of quickly editing the UI interface.
â‘£ Function panel (Panel)
Above the canvas is the functional panel area, including canvas zoom in/out buttons, undo/redo buttons, show/hide component virtual border buttons, and code conversion buttons.
⑤ Attributes & Styles
It is located on the right side of the low-code page. After selecting the component in the canvas, the developer can modify the component’s properties, style and binding events in the property style bar. When setting properties (Properties) and binding events (Events), developers can directly associate the data and methods in the js file in the low-code page, thereby defining the business logic of the low-code page.
Properties – HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: It is used to set the properties of the component’s basic identification and appearance display characteristics. Such as component ID, If and other attributes.
General -HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Used to set general styles such as Width, Height, Background, Position, and Display.
Feature-HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: used to set the unique style of the component, such as the FontSize style that describes the size of the text.
Flex -HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Used to set Flex layout related styles.
Events -HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Bind related events to the component, and set the callback function of the bound event.
Dimension-HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Used to set Padding, Border, Margin and other styles related to the box model.
Grid -HarmonyOS development essential tool, Huawei DevEco Studio 2.2 Beta 1 released: support low-code development, remote real machine: Used to set Grid layout related styles. This icon will only appear when the Div component’s Display is set to Grid.
2. Low-code development also supports real-time preview and multi-language functions:
Support real-time preview of visual files
When developers modify the page layout through low-code pages, the previewer can present the modified design effect in real time, improving the efficiency of interface development and design (as shown in Figure 3).
Support multi-language ability
In order to meet the development needs of developers for multi-language versions, low-code pages have introduced multi-language capabilities. Developers can use multi-language capabilities by defining resource files and referencing resources in two steps (as shown in Figure 4). Step 1: Place language resource files in the designated i18n folder. Step 2: In the attribute style column of the low-code page, use the $t method to reference the resource, and the system will display the content in the resource file of the corresponding language according to the current locale and the specified resource path. Meet the development needs of developers in multi-language versions.
Highlight 2: New remote real machine
In order to solve the problem that it is difficult for developers to obtain the resources of the HarmonyOS real device, DevEco Studio 2.2 Beta1 has launched a remote real device.
The remote real device is a real device resource deployed in the cloud. Compared with the remote simulator, the remote real device’s interface rendering and operating experience are smoother, and it can also better verify the running effect of the application on the device, such as performance, mobile phone Network environment, etc.
Currently, the remote real phone only supports two device types: Phone and Wearable. Developers can open the device list by clicking “Tools> Device Manager”, click the Remote Device tab, log in to the real-name account, and apply for remote real-device resources (as shown in Figure 5).
Reminder: Developers need to sign the application if they want to debug and run the application on the remote real machine
in addition to the above two new features, DevEco Studio 2.2 Beta1 has also made a lot of optimizations on the original basis. The specific optimization points are as follows:
Enhanced features
HarmonyOS SDK adds API Version 6 interface, Stage is Beta.
The distributed simulator function is enhanced, this feature is enabled by default, and there is no need to manually enable it in DevEco Labs.
HiTrace log tracking and analysis capabilities have been enhanced, with new support for timeline view and events view.
Solve the problem that the preview interface (text, image, etc.) will be zoomed when the screen density of the qualifier directory setting is inconsistent with the real device.
Solved the problem that real-name authentication is required when using the remote simulator. After the real-name authentication is completed, it still prompts that real-name authentication is required.
Solved the problem that the remote simulator could not find the device in the list with a small probability.
Solved the problem that there was a small probability that the running simulator could not be found when using the remote simulator to run the application.
(Via)
Huawei Apps Apk
Huawei Music Latest 2026 Update
Huawei is sending out a brand new software update for its core mobile applications. This time, the official Huawei Music App is getting a fresh installation package for global users. The new build brings important bug fixes and optimization tweaks to make your daily audio streaming experience much smoother than before.
The newest update arrives with the official version number 12.11.39.310. The deployment size is around 145MB, so it is best to use a stable Wi-Fi connection to download it. This default system application allows you to play your locally saved audio files and stream millions of popular songs from a massive online database, acting as a great local alternative to Spotify.
With this updated application, you can enjoy your favorite music tracks anytime and anywhere. The software layout is incredibly clean and simple, making it easy to browse through custom playlists categorized by your mood. It also supports high-quality, lossless sound formats, giving you clear audio whether you are wearing wireless earbuds or using the main speakers of your phone.
Check compatibility and download the latest version
This music tool is fully compatible with older and newer smartphones. It runs perfectly on all devices running on EMUI 4.0 or any higher version up to the current software builds. The update is rolling out gradually over the air through the official AppGallery platform, meaning some regional models might receive the download prompt slightly later than others.
If you want to experience the new changes immediately without waiting for the automatic notification, you can download the safe APK installation file directly from trusted online application repositories. Keeping your core system applications updated ensures that you do not face any random freezing or audio slowdown issues during your daily media playback sessions.
DOWNLOAD THE LATEST HUAWEI MUSIC APP
- Huawei Music 12.11.39.310 APK [September 22, 2025]
- Huawei Music 12.11.37.321 APK [April 22, 2025]
- Huawei Music 12.11.36.301 APK [September 13, 2024]
- Huawei Music 12.11.35.301 APK [August 16, 2024]
- Huawei Music 12.11.34.300 APK [April 25, 2024]
- Huawei Music 12.11.33.304 APK [March 16, 2024]
- Huawei Music 12.11.32.302 APK [March 02, 2024]
- Huawei Music 12.11.31.361 APK [December 03, 2023]
- Huawei Music 12.11.31.302 APK [October 10, 2023]
- Huawei Music 12.11.30.354 APK [August 09, 2023]
- Huawei Music 12.11.30.351 APK [July 20, 2023]
- Huawei Music 12.11.30.321 APK [July 02, 2023]
- Huawei Music 12.11.30.303 APK [June 02, 2023]
- Huawei Music 12.11.28.304 APK [May 17, 2023]
- Huawei Music 12.11.29.352 APK [April 22, 2023]
- Huawei Music 12.11.28.304 APK [April 04, 2023]
- Huawei Music 12.11.28.302 APK [February 15, 2023] [New version]
- Huawei Music 12.11.27.352 APK [December 19, 2022] [New version]
- Huawei Music 12.11.27.302 APK [December 16, 2022] [New version]
- Huawei Music 12.11.27.302 APK [November 11, 2022]
- Huawei Music 12.11.26.304 APK (arm64-v8a + arm) (Android 5.0+) [November 02, 2022]
- Huawei Music 12.11.26.303 APK (Android 5.0+) [October 06, 2022]
- Huawei Music 12.11.26.303 APK [September 29, 2022]
- Huawei Music 12.11.25.303 APK [September 08, 2022]
- Huawei Music 12.11.25.302 APK (arm64-v8a + arm) [August 07, 2022]
- Huawei Music 12.11.25.302 APK [August 03, 2022]
- Huawei Music 12.11.24.353 APK [July 16, 2022]
- Huawei Music 12.11.24.352 APK [July 08, 2022]
- Huawei Music 12.11.24.351 APK [July 02, 2022]
- Huawei Music 12.11.24.305 APK [June 04, 2022]
- Huawei Music 12.11.24.101 APK [May 02, 2022]
- Huawei Music 12.11.23.303 APK [April 18, 2022]
- Huawei Music 12.11.23.302 APK [April 05, 2022]
- Huawei Music 12.11.23.300 APKÂ (March 31, 2022)
- Huawei Music 12.11.22.303 APK (February 22, 2022)
- Huawei Music 12.11.22.300 APK (February 09, 2022)
- Huawei Music 12.11.22.101 APK (January 23, 2022)
- Huawei Music 12.11.21.316 APK (January 13, 2022)
- Huawei Music 12.11.21.311 APK (December 31, 2021)
- Huawei Music 12.11.21.300 APK (December 20, 2021)
- Huawei Music 12.11.21.100 APK (December 11, 2021)
- Huawei Music 12.11.20.321 APK (December 04, 2021)
- Huawei Music 12.11.20.315 APK (November 24, 2021)
- Huawei Music 12.11.20.312 APK (November 19, 2021)
- Huawei Music 12.11.20.100 APKÂ (October 28, 2021)
- Huawei Music 12.11.19.302 APK (September 29, 2021)
- Huawei Music 12.11.19.301 APKÂ (September 28, 2021)
- Huawei Music 12.11.19.100 APKÂ (September 17, 2021)
- Huawei Music 12.11.18.360 APKÂ (July 21, 2021)
- Huawei Music 12.11.18.303 APKÂ (July 05, 2021)
- Huawei Music 12.11.18.100 APKÂ (June 06, 2021)
- Huawei Music App 12.11.17.385
- Huawei Music App 12.11.17.382
- Huawei Music App 12.11.17.380
- Huawei Music App 12.11.17.304
- Huawei Music App 12.11.17.303
- Huawei Music App 12.11.17.102
DOWNLOAD THE LATEST HUAWEI MUSIC Wear OS APP
- Music (Wear OS) 1.0.8.20180404 [August 28, 2023]
Download the latest version of Huawei music App from Huawei AppGallery.
HUAWEI Music aims to provide a High-Quality and All-Scenario music experience, with vast music catalog* for streaming.
Stations
Enjoy diversified and personalized radio stations.
Browse
Discover global hit tracks in exclusive charts and curated playlists.
Albums
Catch every hit album and let yourself immerse.
All-scenario
Cross-device Streaming
Huawei Music supports all-scenario, cross-Huawei-devices Streaming, allowing you to enjoy high-quality music at anytime anywhere.
IDENTIFY
Identify songs intelligently with a strong database and AI matching system. Starting now, find the songs you aim to love.
RUNNING MUSIC
Running music from HUAWEI Music can help users find and match the suitable music according to the user’s running BPM(beats per minute).
PARTY MODE
Connect Huawei Mobiles together and play the same song simultaneously to experience the surrounding sound.
HarmonyOS 5
Huawei Mate XT HarmonyOS 5.1.0.128 update rolling out
Huawei has started rolling out the HarmonyOS 5.1.0.128 SP5 update to its Mate XT tri-fold phone. The system package size is about 1.90GB, bringing more new features and experiences.
For example, the live window will receive a new upgrade in visuals and motion effects, while covering more life scenarios; the AI photo editing function of the gallery will add magic image transfer and portrait refinement functions.
Version push time
July 29, 2025: Unlimited upgrades from 5.0.1.130SP8 to 5.1.0.128SP5 are available . Go to Settings > Tap your device name > Check for updates. If your device hasn’t yet been upgraded to HarmonyOS 5, it’s recommended to upgrade first through My Huawei App > Upgrades > (Multi-device Upgrades) and then upgrade to 5.1.0.128SP5 through Settings > Tap your device name > Check for updates.
Compatible models
HUAWEI Mate XT | ULTIMATE DESIGN ( GRL-AL10 )
Version Changelog
Update points from 5.0.1.130SP8 to 5.1.0.128SP5:
Live Window
The visual and dynamic effects are completely upgraded, the live window is displayed in the center , the real-time information flow and the camera hole are cleverly combined, the key information is in the visual focus, the amount of text information on the left and right has doubled, and the delivery status of the takeaway order, the license plate number of the taxi and other information are clear at a glance
Covering more life scenarios, supporting multi-task display and interaction , and obtaining information more efficiently
Gallery
New Magic Image Shift function , you can freely drag, scale or copy the elements in the photo you have taken. You can easily adjust the relationship between the elements and the background without professional cutout tools, and easily achieve creative composition (Gallery Edit > AI Photo Editing)
New portrait retouching function , AI intelligently analyzes portrait scenes, automatically optimizes lighting and composition effects, making your portrait photos more outstanding (Gallery Edit > AI Retouching)
Support adding gallery cards on the desktop for quick browsing of albums
Theme
Supports the use of the silly dance theme shared from the HUAWEI Pura80 series
Xiaoyi
Supports the Creative Studio agent. Provide a text to describe the picture. The Creative Studio agent can draw a variety of imaginative pictures for you (Xiaoyi App > Discover > Agent > Creative Studio)
Supports Xiaoyi Photo Studio intelligent agent, which can generate your own exquisite creative photos through templates of various styles, experience different hairstyles, travel through different time and space, realize various “what ifs”, and experience various parallel lives without leaving home (Xiaoyi App > Discover > Intelligent Agent > Xiaoyi Photo Studio)
Supports Xiaoyi’s deep problem-solving intelligent body, which has multiple functions such as photo-taking and problem-solving, homework correction, etc. It is a parent tutoring assistant that helps improve learning efficiency throughout the whole process
System
Notification center supports batch management of notifications (Settings > Notifications and Status Bar)
Optimize the document recognition capability of Huawei payment upload
Optimize the smoothness of dragging large files between Huawei Windows PC and mobile phone
Lock screen
Optimize the smoothness of sliding messages left and right on the lock screen
Recording
Support multiple applications to record at the same time
Game
Optimize the stability and fluency of the game engine to enhance the gaming experience
Wallet
Wallet card swiping is connected to the new live window . Card swiping status such as transportation cards, access cards and car keys will be presented in the form of live window cards, with key information displayed locally, and light reminders are more comfortable
Calendar
Subscription service supports subscription to “This Day in History” (Sidebar > Subscription Service > Manage)
Added illustration background to solar term cards in month view (Calendar Settings > Other Calendars > Chinese Lunar Calendar)
Accessories
Smart voice broadcast in headphones
Connect to Huawei headphones to support live window information broadcasting of travel applications, such as taxis and boarding. When the vehicle arrives or boarding starts, the headphones will automatically play reminder messages, making it easy to cope with busy lives
Connecting Huawei headphones supports integrated broadcasting of long text notification messages received by the phone in scenarios such as travel, takeout, and payment, so that only key information is obtained without internal consumption.
HiCar Shake App Flow
After connecting to HiCar, when the “transferable” live window appears on the mobile application interface, shake the phone and the page content can be transferred to the car screen display.
Huawei Apps Apk
Huawei Health App Update July 2025: New AI Features
Huawei Health App Update July 2025: New AI Features and Enhanced Performance (Version 15.1.6.300)
Huawei has officially released the latest update for its popular Health application, bringing version 15.1.6.300 to users worldwide in July 2025. This comprehensive update introduces groundbreaking AI-powered features and significant performance improvements that enhance the overall fitness tracking experience.
What’s New in Huawei Health App 15.1.6.300
Revolutionary AI Body Shape Analysis
The standout feature of this update is the introduction of AI body shape analysis in the weight management section. Users can now simply take a photo to receive:
- Personalized body shape improvement plans
- Detailed body composition insights
- Customized fitness recommendations based on individual body types
Enhanced Health Insights Dashboard
The previous “Trends” feature has been completely redesigned and upgraded to “Health Insights,” offering:
- Multidimensional data correlation analysis for comprehensive health tracking
- Advanced pattern recognition across different health metrics
- Predictive insights to help users achieve their fitness goals
Improved Social Features
The new update introduces a brand new sports record sharing experience, making it easier than ever to:
- Share workout achievements with friends and family
- Connect with the fitness community
- Motivate others through social fitness challenges
Premium Membership Experience
A dedicated Membership tab page has been added, providing premium users with:
- Exclusive access to advanced features
- Personalized coaching programs
- Priority customer support
Technical Improvements and Bug Fixes
Sleep Monitoring Enhancements
- Mobile phone sleep recording algorithm optimization for more accurate sleep tracking
- New support for sleep snoring and sleep talking detection and sharing
- Improved sleep quality analysis and recommendations
User Interface Optimizations
- Complete overhaul of the “My Map” page for better navigation
- Fixed dark mode display issues in Knowledge Headlines
- Enhanced app stability and performance across all Android devices
Activity Tracking Improvements
- Streamlined diet log experience with simplified food entry
- Added comprehensive summary data for all activity records
- Resolved Clover drinking water task completion issues
Comprehensive Fitness Tracking Features
Multi-Sport Support
The Huawei Health App continues to excel in fitness tracking with support for:
- Walking, running, and cycling modes with detailed metrics
- Real-time heart rate monitoring during workouts
- GPS trajectory tracking with speed and distance measurements
- Comprehensive sports data analysis and reporting
Training Programs
- 5K to marathon training programs suitable for all fitness levels
- Progressive workout plans that adapt to user performance
- Integration with Huawei wearable devices for seamless data synchronization
Device Compatibility
- Android 4.4.4 and above supported
- Minimum 2GB RAM requirement for optimal performance
- Full integration with Huawei Wear APP ecosystem
System Requirements and Compatibility
To ensure optimal performance of the Huawei Health App 15.1.6.300:
- Operating System: Android 4.4.4 or higher
- RAM: Minimum 2GB (4GB recommended)
- Storage: At least 100MB free space
- Network: Stable internet connection for cloud sync
How to Update Huawei Health App
Automatic Update
- Open the Huawei AppGallery on your device
- Navigate to “My Apps” section
- Look for Huawei Health in the update list
- Tap “Update” to install version 15.1.6.300
Manual Installation
Users can also download the APK directly from trusted sources or the official Huawei website. Always ensure you’re downloading from verified sources to maintain device security.
Download Links and Version History
Latest Version
- Huawei Health 15.1.6.300 (July 03, 2025) – Current stable release
Why This Update Matters
The July 2025 update represents a significant leap forward in mobile health technology. The integration of AI-powered body analysis and enhanced health insights positions the Huawei Health App as a leader in the competitive fitness tracking market. These improvements directly address user feedback and market demands for more intelligent, personalized health solutions.
Conclusion
The Huawei Health App 15.1.6.300 update brings substantial improvements that make it an essential tool for anyone serious about fitness and health tracking. With its new AI features, enhanced social capabilities, and improved stability, this update reinforces Huawei’s commitment to providing cutting-edge health technology.
Download the latest version today to experience these revolutionary features and take your fitness journey to the next level. The combination of advanced AI analysis, comprehensive tracking capabilities, and seamless device integration makes this one of the most significant updates in the app’s history.
DOWNLOAD HUAWEI HEALTH LATEST APP
- Huawei Health 15.1.6.300 [July 03, 2025]
- Huawei Health 15.0.10.350-wearBeta [October 28, 2024]
- Huawei Health 15.0.10.161-wearBeta [October 12, 2024]
- Huawei Health 15.0.8.371-wearBeta [September 30, 2024]
- Huawei Health 15.0.8.320 [September 25, 2024]
- Huawei Health 15.0.8.353-wearBeta [September 12, 2024]
- Huawei Health 15.0.8.300 APK [September 06, 2024]
- Huawei Health 15.0.8.172-wearBeta APK [August 26, 2024]
- Huawei Health 14.1.6.361-wearBeta APK [July 27, 2024]
- Huawei Health 14.1.6.360-wearBeta APK [July 05, 2024}
- Huawei Health 14.1.6.300 APK [July 05, 2024}
- Huawei Health 14.1.6.170-wearBeta APK [June 21, 2024]
- Huawei Health 14.1.4.330 APK [June 11, 2024]
- Huawei Health 14.1.4.371-wearBeta APK [May 22, 2024]
- Huawei Health 14.1.4.310 APK [May 20, 2024]
- Huawei Health 14.1.4.352-wearBeta APK [May 04, 2024]
- Huawei Health 14.1.4.175-wearBeta APK [April 23, 2024]
- Huawei Health 14.1.2.320 APK [April 15, 2024]
- Huawei Health 14.1.2.310 APK [April 12, 2024]
- Huawei Health 14.1.2.355-wearBeta APK [March 11, 2024]
- Huawei Health 14.1.2.350-wearBeta APK [February 27, 2024]
- Huawei Health 14.1.2.175-wearBeta APK [February 19, 2024]
- Huawei Health 14.0.12.310 APK [January 26, 2024]
- Huawei Health 14.0.12.352-wearBeta APK [January 06, 2024]
- Huawei Health 14.0.12.350-wearBeta APK [December 28, 2023]
- Huawei Health 14.0.10.310 APK [December 20, 2023]
- Huawei Health 14.0.10.300 APK [December 01, 2023]
- Huawei Health 14.0.10.176-wearBeta APK [October 31, 2023]
- Huawei Health 14.0.9.351-wearBeta APK [September 22, 2023]
- Huawei Health 14.0.8.370-wearBeta APK [September 16, 2023]
- Huawei Health 14.0.8.310 APK [September 13, 2023]
- Huawei Health 14.0.8.300 APK [September 09, 2023]
- Huawei Health 14.0.7.351-wearBeta APK [August 01, 2023]
- Huawei Health 14.0.7.351-wearBeta APK [July 28, 2023]
- Huawei Health 14.0.7.155-wearBeta APKÂ [July 23, 2023]
- Huawei Health 13.1.6.310 APK [July 13, 2023]
- Huawei Health 13.1.6.351-wearBeta APK [June 30, 2023]
- Huawei Health 13.1.6.160-wearBeta APK [June 25, 2023]
- Huawei Health 13.1.6.156-wearBeta APK [June 20, 2023]
- Huawei Health 13.1.5.370-wearBeta APK [June 14, 2023]
- Huawei Health 13.1.5.362-wearBeta APK [June 09, 2023]
- Huawei Health 13.1.5.351-wearBeta APK [June 06, 2023]
- Huawei Health 13.1.5.350-wearBeta APK [May 31, 2023]
- Huawei Health 13.1.5.156-wearBeta APK [May 24, 2023]
- Huawei Health 13.1.4.461-wearBeta APK [May 17, 2023]
- Huawei Health 13.1.4.300 APK [May 11, 2023]
- Huawei Health 13.1.4.352-wearBeta APK [April 28, 2023]
- Huawei Health 13.1.3.310 APK [April 19, 2023]
- Huawei Health 13.1.2.320 APK [March 29, 2023]
- Huawei Health 13.1.3.167 wearBeta APK [March 27, 2023]
- Huawei Health 13.1.2.310 APK [March 09, 2023]
- Huawei Health 13.1.2.358-wearBeta APK [February 28, 2023]
- Huawei Health 13.1.2.300 APK [February 25, 2023]
- Huawei Health 13.1.2.160-wearBeta App APK [February 03, 2023]
- Huawei Health 13.1.1.300 App APKÂ [January 30, 2023]
- Huawei Health 13.1.1.166 Beta App APKÂ [December 29, 2022]
- Huawei Health 13.0.2.300 App APKÂ [December 25, 2022]
- Huawei Health 13.0.2.355-wearBeta [December 17, 2022]
- Huawei Health 13.0.2.351 [December 14, 2022]
- Huawei Health 13.0.1.310 [December 08, 2022]
- Huawei Health 13.0.1.361-wearBeta APK [November 25, 2022]
- Huawei Health 13.0.1.356-wearBeta APK [November 21, 2022]
- Huawei Health 13.0.1.300 APK [November 19, 2022]
- Huawei Health 13.0.0.320 APK [October 30, 2022]
- Huawei Health 13.0.0.310 APK [October 22, 2022]
- Huawei Health 13.0.0.300 APK [October 14, 2022]
- Huawei Health 12.1.8.320 APK [September 17, 2022]
- Huawei Health 12.1.7.300 APK [August 09, 2022]
- Huawei Health 12.1.6.352-wearBeta APK [August 05, 2022]
- Huawei Health 12.1.6.320 APK [July 26, 2022]
- Huawei Health 12.1.6.300 APK [June 30, 2022]
- Huawei Health 12.1.5.330 APK [June 19, 2022]
- Huawei Health 12.1.4.361 wearbeta APK [April 30, 2022]
- Huawei Health 12.1.4.351 APK [April 29, 2022]
- Huawei Health 12.1.3.381 APK [April 15, 2022]
- Huawei Health 12.1.3.320 APK [April 11, 2022]
- Huawei Health 12.1.3.361 APKÂ [April 08, 2022]
- Huawei Health App 12.1.2.320 [March 12, 2022]
- Huawei Health App 12.1.2.310 APK [March 04, 2022]
- Huawei Health App 12.1.1.320 APK [January ]
- Huawei Health App 12.1.1.310 APK [January 22, 2022]
- Huawei Health App 12.1.1.300 APK [January 19, 2022]
- Huawei Health App 12.0.12.371-wearBeta [January 07, 2022]
- Huawei Health App 12.0.12.366 APK [December 31, 2021]
- Huawei Health App 12.0.12.320 APK [December 31, 2021]
- Huawei Health App 12.0.12.315 APK [December 27, 2021]
- Huawei Health App 12.0.12.310 APK [December 25, 2021]
- Huawei Health App 12.0.12.300 APK [December 18, 2021]
- Huawei Health App 12.0.11.300 APK [December 01, 2021]
- Huawei Health App 12.0.10.315 APK [November 19, 2021]
- Huawei Health App 12.0.10.310 APK [November 13, 2021]
- Huawei Health App 12.0.10.305 APK [October 28, 2021]
- Huawei Health App 12.0.8.305Â APK [September 13, 2021]
- Huawei Health App 12.0.8.300 APK [September 09, 2021]
- Huawei Health App 11.0.10.518 APK [August 28, 2021]
- Huawei Health App 11.0.9.516 APK [July 08, 2021]
- Huawei Health App 11.0.8.525 APK [June 13, 2021]
- Huawei Health App 11.0.8.521 APK [June 10, 2021]
- Huawei Health App 11.0.8.516 APK [June 10, 2021]
- Huawei Health App 11.0.7.518 APK [May 21, 2021]
- Huawei Health App 11.0.7.516 APK [May 14, 2021]
- Huawei Health App 11.0.7.515 APK [May 09, 2021]
- Huawei Health App 11.0.6.515 APK
- Huawei Health App 11.0.6.512 APK
- Huawei Health App 11.0.5.508 APK
- Huawei Health App 11.0.4.523 APK
- AppGallery Link

