Ensure Example Packages Work on Android API 36 (#9241)
Ensured the example plugin apps on Android work on Android API 36 by updating configurations and sucessfully running flutter build apk (means the app can successfully build + all dependencies are resolvable). For compatibility with Android API 36, the example plugin apps on Android should have the following configurations:
targetSdk: 36
compileSdk: 36
AGP version: 8.9.1
Gradle version: 8.11.1
Most packages no longer require a manual bump of targetSdk and compileSdk due to usage of values from Flutter Gradle Plugin. Below is a list of example plugin apps on Android:
Partially Adresses https://github.com/flutter/flutter/issues/163071
## Pre-Review Checklist
[^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
[various] Add Swift Package Manager integration to example apps (#8219)
This migrates various example apps to have Swift Package Manager integration. This raises the example apps' Flutter SDK requirement to 3.24.0 or higher.
I will get a text exemption for this change.
The example apps were migrated using the following commands:
```
dart run script/tool/bin/flutter_plugin_tools.dart build-examples --ios --swift-package-manager
dart run script/tool/bin/flutter_plugin_tools.dart build-examples --macos --swift-package-manager
```
â ï¸ The following plugins' example apps are **not* included in this change as their migration included non-SPM changes that require closer review:
1. google_sign_in
1. google_sign_in_ios
1. image_picker
1. image_picker_ios
1. image_picker_macos
1. pigeon
Part of: https://github.com/flutter/flutter/issues/159173
[various] Add Swift Package Manager integration to example apps (#8219)
This migrates various example apps to have Swift Package Manager integration. This raises the example apps' Flutter SDK requirement to 3.24.0 or higher.
I will get a text exemption for this change.
The example apps were migrated using the following commands:
```
dart run script/tool/bin/flutter_plugin_tools.dart build-examples --ios --swift-package-manager
dart run script/tool/bin/flutter_plugin_tools.dart build-examples --macos --swift-package-manager
```
â ï¸ The following plugins' example apps are **not* included in this change as their migration included non-SPM changes that require closer review:
1. google_sign_in
1. google_sign_in_ios
1. image_picker
1. image_picker_ios
1. image_picker_macos
1. pigeon
Part of: https://github.com/flutter/flutter/issues/159173
[various] Commit Windows build migrations (#6175)
Commits the changes caused by building all examples for Windows with a recent version of Flutter, to minimize noise in CI logs and local builds.
All changes are entirely tool-generated.