mirror of
https://github.com/FoggedLens/deflock-app.git
synced 2026-07-03 03:15:48 +02:00
Address Copilot review feedback on PR #46
- build.gradle.kts: use maxOf(flutter.minSdkVersion, 23) to preserve the floor required by oauth2_client/flutter_web_auth_2 - DEVELOPER.md: replace hardcoded /opt/homebrew paths with $(brew --prefix) for Intel Mac compatibility, use $HOME instead of /Users/$USER for --sdk_root - README.md: label quick-start as macOS-specific, add cross-platform pointer to DEVELOPER.md Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -39,7 +39,7 @@ android {
|
||||
// ────────────────────────────────────────────────────────────
|
||||
// oauth2_client 4.x & flutter_web_auth_2 5.x require minSdk 23
|
||||
// ────────────────────────────────────────────────────────────
|
||||
minSdk = flutter.minSdkVersion
|
||||
minSdk = maxOf(flutter.minSdkVersion, 23)
|
||||
targetSdk = 36
|
||||
|
||||
// Flutter tool injects these during `flutter build`
|
||||
|
||||
Reference in New Issue
Block a user