react-native-vision-camera/android
Marc Rousavy 99fff446e5
fix: Fix calling multiple Plugins in a single Frame Processor (#435)
* fix: Fix JNI <-> JSI conversion for Integers

* Create another plugin and call them both serially

* Use inline formatter for `__android_log_write`

* Update FrameProcessorRuntimeManager.cpp

* Log plugin class type

* Use `pluginGlobal->cthis()`

* Log class name

* fix dumb error

* C++: Dynamically get JNI `javaPart_` class & method

* clean up PR
2021-09-24 10:19:30 +02:00
..
.settings Bootstrap 2021-02-19 16:07:53 +01:00
gradle/wrapper feat: Add react-native 0.65 support (#378) 2021-08-20 11:53:40 +02:00
src/main fix: Fix calling multiple Plugins in a single Frame Processor (#435) 2021-09-24 10:19:30 +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: Upgrade kotlinx-coroutines 1.5.0 -> 1.5.2 (#450) 2021-09-23 14:22:11 +02:00
CMakeLists.txt chore: Also run validate-cpp for Android C++ files 2021-09-07 14:17:35 +02:00
gradle.properties chore: Upgrade kotlinx-coroutines 1.5.0 -> 1.5.2 (#450) 2021-09-23 14:22:11 +02:00
gradlew Use gradle 3.2.1 instead of 4.1.2 2021-02-19 20:43:37 +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: Frame Processors for Android (#196) 2021-06-27 12:37:54 +02: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.