Fix: Update permission logic for API 36+ and code style improvements#342
Fix: Update permission logic for API 36+ and code style improvements#342M1n9yu23 wants to merge 1 commit intoandroid:mainfrom
Conversation
The `BODY_SENSORS` permission is no longer sufficient for heart rate monitoring on Android 16 (API 36+) due to the introduction of granular permissions. Changes included in this commit: - Conditionally request `READ_HEART_RATE` on Baklava (API 36) and above. - Fallback to `BODY_SENSORS` for Android 15 (Vanilla Ice Cream) and below. - Apply spotless formatting to comply with the project style guide.
Summary of ChangesHello @M1n9yu23, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request primarily focuses on enhancing the application's robustness and code quality. It introduces a critical fix for permission handling on Android API 36+, ensuring that health-related permissions are requested correctly and consistently across different Android versions. Additionally, it includes a series of code style improvements, such as correcting indentation and removing unnecessary imports, to align the codebase with established coding standards. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request effectively addresses the permission handling for Android API 35+ by correctly using the granular READ_HEART_RATE permission while maintaining backward compatibility with BODY_SENSORS. The changes in PreparingViewModel.kt are well-implemented and follow best practices for handling version-specific permissions. Additionally, the pull request includes several valuable code style improvements across multiple files, such as removing unused imports, fixing indentation, and adding braces to control flow statements, which all contribute to better code readability and maintainability. Overall, this is a solid contribution that improves both the functionality and quality of the codebase.
Summary
This PR updates the permission handling logic to support API 36+ granular permissions and fixes code formatting issues (indentation and unused imports).
The Problem
During debugging on the API 36 emulator, I observed an inconsistency in permission states. Even after granting "All" permissions in the dialog, the system still flags some permissions as "denied".
I verified this using the following debug code in MainActivity.kt:
The Fix
To ensure robust behavior and prevent potential issues:
PreparingViewModelto requestREAD_HEART_RATEon API 36+ and fallback toBODY_SENSORSfor older versions.