Snap for 11933214 from 80a665954f783bbc2ed2be95ab4ed495b01f8567 to busytown-mac-infra-release

Change-Id: Id6b60e40794098bf9839899b34cbb45ae7718cae
tree: 127e1e79dd0bb794d7688a9f844cf6ace06c81a5
  1. .github/
  2. .idea/
  3. app/
  4. benchmark/
  5. core/
  6. data/
  7. docs/
  8. domain/
  9. feature/
  10. gradle/
  11. hooks/
  12. spotless/
  13. .editorconfig
  14. .gitignore
  15. Android.bp
  16. build.gradle.kts
  17. gradle.properties
  18. gradlew
  19. gradlew.bat
  20. LICENSE
  21. METADATA
  22. MODULE_LICENSE_APACHE2
  23. OWNERS
  24. README.md
  25. settings.gradle.kts
  26. TEST_MAPPING
README.md

Video Capture with Jetpack Camera App

Jetpack Camera App ๐Ÿ“ธ

Jetpack Camera App (JCA) is a camera app, focused on features used by app developers, and built entirely with CameraX, Kotlin and Jetpack Compose. It follows Android design and development best practices and it's intended to be a useful reference for developers and OEMs looking to validate their camera feature implementations.

Development Environment โš’๏ธ

This project uses the gradle build system, and can be imported directly into Android Studio.

Currently, Jetpack Camera App is built using the Android Gradle Plugin 8.4, which is only compatible with Android Studio Jellyfish or newer.

Architecture ๐Ÿ“

JCA is built with modern android development (MAD) principles in mind, including architecture and testing best practices.

The app is split into multiple modules, with a clear separation between the UI and data layers.

Testing ๐Ÿงช

Thorough testing is a key directive of JCA. We use Compose Test and UI Automator to write instrumentation tests that run on-device.

These tests can be run on a connected device via Android Studio, or can be tested on an Android Emulator using built-in Gradle Managed Device tasks. Currently, we include Pixel 2 (API 28) and Pixel 8 (API 34) emulators which can be used to run instrumentation tests with:

$ ./gradlew pixel2Api28DebugAndroidTest and $ ./gradlew pixel8Api34DebugAndroidTest

Source Code Headers

Every file containing source code must include copyright and license information. This includes any JS/CSS files that you might be serving out to browsers. (This is to help well-intentioned people avoid accidental copying that doesn't comply with the license.)

Apache header:

Copyright (C) 2024 The Android Open Source Project

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.