Conversation
…r regardless of discovery mode
…prevent memory leaks
…ent, and IP address state handling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request refactors device connection logic and improves device discovery handling in the AirSync app. The main focus is on making device connections more robust and context-aware, ensuring the correct device information and credentials are used, and replacing the legacy UDP discovery manager with a new orchestrator for device discovery. Additionally, it introduces UI enhancements for device source labeling and fixes some context usage issues.
Device connection and discovery improvements:
connectfunction inAirSyncMainScreen.ktto accept explicit parameters (ipAddress,port,symmetricKey), ensuring the correct values are used for each connection attempt. This change also updates all call sites to pass the appropriate device information. [1] [2] [3] [4]getSymmetricKeyForDevicemethod inAirSyncViewModel. [1] [2]AirSyncViewModelto ensure the UI always displays the correct last connected device and IP address, both on initialization and when the connection state changes. [1] [2]Device discovery orchestration:
UDPDiscoveryManagerwith the newDiscoveryOrchestratorin both the service and viewmodel, centralizing device discovery logic. [1] [2] [3] [4] [5]User interface enhancements:
Context and resource management:
Imports and code organization:
DiscoverySource,RoundedCornerShape, andDiscoveryOrchestrator. [1] [2]These changes collectively improve the reliability and clarity of device connections and discovery in the app, while also enhancing the user experience with better device information and safer resource handling.