react-native-vision-camera/android
Marc Rousavy 0e9f1ca640
perf: Improve pixelFormat and add CameraDevice.sensorOrientation (#1729)
* feat: Orientation

* fix orientation value in manifest

* Update AndroidManifest.xml

* Style

* fix: Set MAX_IMAGES to 3

* Pass `isMirrored` to `VideoPipeline`

* Update docs about Skia FPs

* Options

* Add iPad target

* Remove UIDevice onOrientationChanged listener

* Update CameraView+AVCaptureSession.swift

* Update CameraView+AVCaptureSession.swift

* Update CameraView+AVCaptureSession.swift

* Get available pixelFormats on iOS

* format

* Update CameraSession.kt

* Expose `CameraDevice.sensorOrientation`

* Lock orientation again
2023-09-01 15:07:16 +02:00
..
.settings Bootstrap 2021-02-19 16:07:53 +01:00
gradle/wrapper fix: Downgrade Gradle to 7.5.1 2023-07-03 22:15:06 +02:00
src/main perf: Improve pixelFormat and add CameraDevice.sensorOrientation (#1729) 2023-09-01 15:07:16 +02:00
.editorconfig Devops: KTLint to lint Kotlin code (#6) 2021-02-26 10:56:20 +01:00
.project Bootstrap 2021-02-19 16:07:53 +01:00
build.gradle chore: Remove Skia 🎨 (#1740) 2023-09-01 12:20:17 +02:00
CMakeLists.txt chore: Remove Skia 🎨 (#1740) 2023-09-01 12:20:17 +02:00
gradle.properties feat: Create C++/OpenGL-based Video Pipeline for more efficient Recording and Frame Processing (#1721) 2023-08-29 17:52:03 +02:00
gradlew chore: Upgrade to RN 71 (#1465) 2023-02-09 11:52:41 +01:00
gradlew.bat Upgrade Example to RN 0.64 (#83) 2021-03-19 15:53:19 +01:00
README.md Add "check-all" script 2021-03-09 12:19:18 +01:00
settings.gradle feat: Replace Reanimated with RN Worklets (#1468) 2023-02-13 15:22:45 +01:00

android

This folder contains the Android-platform-specific code for react-native-vision-camera.

Prerequesites

  1. Install ktlint
    brew install ktlint
    

Getting Started

It is recommended that you work on the code using the Example project (example/android/), since that always includes the React Native header files, plus you can easily test changes that way.

You can however still edit the library project here by opening this folder with Android Studio.

Committing

Before committing, make sure that you're not violating the Kotlin codestyles. To do that, run the following command:

yarn check-android

This will also try to automatically fix any errors by re-formatting the Kotlin code.