-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[tool] Build all_packages command against Flutter Android SDK version to match example app compileSdk constraints
#8345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
… to match example apps
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -243,9 +243,9 @@ dependencies {} | |
| gradleFile, | ||
| replacements: <String, List<String>>{ | ||
| if (gradleFileIsKotlin) | ||
| 'compileSdk': <String>['compileSdk = 34'] | ||
| 'compileSdk': <String>['compileSdk = flutter.compileSdkVersion'] | ||
| else ...<String, List<String>>{ | ||
| 'compileSdkVersion': <String>['compileSdk 34'], | ||
| 'compileSdkVersion': <String>['compileSdk flutter.compileSdkVersion'], | ||
|
||
| } | ||
| }, | ||
| regexReplacements: <RegExp, List<String>>{ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From triage: Is one of these the legacy file? If so, can we make that file use
compileSdk 35(just copying discussion from internal conversation).