camera featurecombinationquery
Latest Update | Stable Release | Release Candidate | Beta Release | Alpha Release |
---|---|---|---|---|
June 4, 2025 | - | - | 1.5.0-beta01 | - |
Declaring dependencies
To add a dependency on camera featurecombinationquery, you must add the Google Maven repository to your project. Read Google's Maven repository for more information.
Add the dependencies for the artifacts you need in the build.gradle
file for
your app or module:
Groovy
dependencies { // Use to implement camera featurecombinationquerys //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery:1.5.0-beta01" // Use to implement camera featurecombinationquery complications //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery-complications-data-source:1.5.0-beta01" // (Kotlin-specific extensions) //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery-complications-data-source-ktx:1.5.0-beta01" // Use to implement a featurecombinationquery style and complication editor //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery-editor:1.5.0-beta01" // Can use to render complications. //TODO: Confirm these dependencies // This library is optional and featurecombinationquerys may have custom implementation for rendering // complications. //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery-complications-rendering:1.5.0-beta01" }
Kotlin
dependencies { // Use to implement camera featurecombinationquerys //TODO: Confirm these dependencies implementation("androidx.camera.featurecombinationquery:featurecombinationquery:1.5.0-beta01") // Use to implement camera featurecombinationquery complications //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery-complications-data-source:1.5.0-beta01" // (Kotlin-specific extensions) //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery-complications-data-source-ktx:1.5.0-beta01" // Use to implement a featurecombinationquery style and complication editor //TODO: Confirm these dependencies implementation("androidx.camera.featurecombinationquery:featurecombinationquery-editor:1.5.0-beta01") // Can use to render complications. //TODO: Confirm these dependencies // This library is optional and featurecombinationquerys may have custom implementation for rendering // complications. //TODO: Confirm these dependencies implementation "androidx.camera.featurecombinationquery:featurecombinationquery-complications-rendering:1.5.0-beta01" }
For more information about dependencies, see Add build dependencies.
Feedback
Your feedback helps make Jetpack better. Let us know if you discover new issues or have ideas for improving this library. Please take a look at the existing issues in this library before you create a new one. You can add your vote to an existing issue by clicking the star button.
See the Issue Tracker documentation for more information.
Version 1.5
Version 1.5.0-beta01
June 4, 2025
androidx.camera.featurecombinationquery:featurecombinationquery:1.5.0-beta01
and androidx.camera.featurecombinationquery:featurecombinationquery-play-services:1.5.0-beta01
are released. Version 1.5.0-beta01 contains these commits.
New Features
- With the update to 1.5.0-beta01, the
FeatureCombinationQuery
artifacts have been moved to their own library group. This change is necessary to improve the modularity and maintainability of the CameraX library.
API Changes
SessionConfigurationCompat
andSessionParametersCompat
have been renamed toSessionConfigurationLegacy
andSessionParametersLegacy
respectively to better reflect their function in supporting older APIs only.- Similarly, the method name/signature of
CameraDeviceSetupCompat.#isSessionConfigurationSupported(SessionConfigurationCompat)
has been changed toCameraDeviceSetupCompat.#isSessionConfigurationSupportedLegacy(SessionConfigurationLegacy)