Develop - Improved splash, UI without top toolbar, minified build, media player in main tab, progressive blur, fonts, remote lock, screenasver and brightness controls, agp update, onboarding, crash reporting and pitch black theme#88
Conversation
Introduced a sequential naming scheme `filename(n).ext` to handle duplicate files gracefully on both Android and macOS.
fixup: Resolve file overwrite and formatting issues on transfer [2/2]
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 introduces several significant updates to the AirSync Android app, focusing on improved crash reporting, user preferences, build optimizations, and UI enhancements. The most notable changes include integrating Sentry for crash reporting with user-controlled opt-in, adding new user preferences (such as pitch black theme and blur), switching from KAPT to KSP for annotation processing, enabling resource shrinking and minification in release builds, and refactoring the main UI scaffold for better theming and maintainability.
Crash Reporting & Analytics:
AirSyncAppclass. Users can enable or disable reporting via a new DataStore preference. Sentry auto-init is disabled in the manifest to avoid double initialization. (app/build.gradle.kts,app/src/main/AndroidManifest.xml,app/src/main/java/com/sameerasw/airsync/AirSyncApp.kt,app/src/main/java/com/sameerasw/airsync/data/local/DataStoreManager.kt) [1] [2] [3] [4] [5] [6]User Preferences:
app/src/main/java/com/sameerasw/airsync/data/local/DataStoreManager.kt) [1] [2]app/src/main/java/com/sameerasw/airsync/MainActivity.kt)Build System & Dependencies:
app/build.gradle.kts) [1] [2]app/build.gradle.kts)app/build.gradle.kts)UI & Theming:
app/src/main/java/com/sameerasw/airsync/MainActivity.kt) [1] [2]app/src/main/java/com/sameerasw/airsync/MainActivity.kt) [1] [2] [3] [4]Proguard & Code Shrinking:
app/proguard-rules.pro)