文件最后提交记录最后更新时间
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.1 年前
[camera,video_player] Update Android to 3.29 minimum (#9317) This is a prequel to https://github.com/flutter/packages/pull/9316 to separate out auto-generated changes. All this does is: - Set the minimum SDK version to 3.29. - Run the autoformatter—which changes a ton of things because the 3.29 minimum opts into the new formatter. ## 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.1 年前
[camera_android_camerax] Implement enableAudio for video recording (#9264) > [!NOTE] > This should land after https://github.com/flutter/packages/pull/9241, which should safely bumps the AGP version of this plugin's example app higher than this PR does. Fixes https://github.com/flutter/flutter/issues/168551 by implementing the enableAudio camera setting for video recording. Also: - Bumps CameraX library version to the latest version,1.5.0-beta01 (to use a new CameraX method in this implementation) - Bumps the plugin AGP version to that which 1.5.0-beta01 requires (8.6.0) - Bumps the plugin's example app AGP version to that which 1.5.0-beta01 requires (8.6.0) -- will be overridden by https://github.com/flutter/packages/pull/9241 - Corrects the example app to use the enableAudio setting just as the app-facing camera widget does - Adds lint errors caused by the **pigeon generated** CameraXLibrary.g.kt file caused by the 1.5.0-beta01 bump to a lint-baseline.xml file (all the errors are [UnsageOptInUsage](https://googlesamples.github.io/android-custom-lint-rules/checks/UnsafeOptInUsageError.md.html) lints caused by the plugin's [ExperimentalCamera2Interop](https://developer.android.com/reference/androidx/camera/camera2/interop/ExperimentalCamera2Interop) usage which is unrelated to this PR) ## 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.1 年前
[camera] Add CameraX plugin for development (#6178) 3 年前
[camera] Add CameraX plugin for development (#6178) 3 年前
[various] Speed up build-examples (#3849) https://github.com/flutter/flutter/issues/125707 - Create pluginTools config for every example that shrunk material icons and had an android config Likely some build caching but before/after If someone knows how to clean the cache or force a rebuild I will give more accurate after numbers. Command time dart run ./script/tool/bin/flutter_plugin_tools.dart build-examples --apk Secondary validation from @stuartmorgan who discovered this is between a 10% and 25% speed increase. Existing tests add confidence this is non-breaking. New tests not required because these are optional flags. Validation this does not change is low consequence. Test update to exclude these config files from changelog requirements.3 年前
[tools] Require implementation package README warning (#6459) 3 年前
[camera,video_player] Update Android to 3.29 minimum (#9317) This is a prequel to https://github.com/flutter/packages/pull/9316 to separate out auto-generated changes. All this does is: - Set the minimum SDK version to 3.29. - Run the autoformatter—which changes a ton of things because the 3.29 minimum opts into the new formatter. ## 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.1 年前
README.md

Platform Implementation Test App

This is a test app for manual testing and automated integration testing of this platform implementation. It is not intended to demonstrate actual use of this package, since the intent is that plugin clients use the app-facing package.

Unless you are making changes to this implementation package, this example is very unlikely to be relevant.