-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android Build Failed in MacOS #212
Comments
Having same issue |
1 similar comment
Having same issue |
+1 |
If anyone is looking for a workaround, Downgrading react-native-vision-camera to version 4.5.2 worked for me. |
Many thanks @dkumar-carfax ! I lost my day on this issue, but indeed 4.5.3 introduces this issue, rolling back to 4.5.2 solves the issue for me too. |
@dkumar-carfax and @christophemenager I am already using the same version("react-native-vision-camera": "^4.5.2") but not working in my project.
|
For new architecture, I tried using "react-native-worklets-core": "2.0.0-beta.3", its working but its not compatible with "react-native-vision-camera": "^4.5.2" so, I changed it to 2.0.0-beta.1, its working ⚒ . Update {
"dependencies": {
"react-native-worklets-core": "2.0.0-beta.1",
"react-native-vision-camera": "^4.5.2"
}
}
NoteThis combination works with the new architecture and resolves conflicts between |
Hey i am encountering similiar build issues on Android using frameProcessors. What i see is that this configuration definitely builds and works sometimes! And then stops building as soon as i do
When the issue occurs:
Same behaviour on available beta versions.
error trace if it occurs:
@mrousavy Sry for pinging but do you know which versions are definitely working together in your dev environment? Idk what it is but something is fucked up with Android builds related to react-native-vision-camera and enabled frameProcessors while using react-native-worklets-core UPDATE:
The issue happens if you use so i changed Of course this is just a workaround fix to be productive again and doesn't resolve the real issue inside the building setup of rn-vision-camera combined with rn-worklets-core but i hope some people can resolve their issues for now and can continue working. Cheers. |
I'm having similar issue, but it only happens when trying to use SkiaFrameProcessors - normal frame processors seem to work for me although it can be a bit of a hassle to do things in correct order. Seems a bit fragile during build if something is a little bit off.
|
SDK Version Mismatch in React Native Project
Description
After installing the package and attempting to run
yarn dev
, I'm encountering an error related to SDK version mismatch. The error message suggests a discrepancy between the user'sminSdkVersion
and the library's build version.Error Message
Project Configuration
My
build.gradle
file includes the following configuration:Expected Behavior
Given that my
minSdkVersion
is set to 26, which is higher than both the error-mentioned versions (22 and 23), I expected the project to build without SDK version conflicts.Actual Behavior
The build process fails, reporting a mismatch between the user's SDK version (reportedly 22) and the library's build version (23), despite the
build.gradle
file specifying aminSdkVersion
of 26.Environment
Steps to Reproduce
react-native-worklets-core
)yarn dev
The text was updated successfully, but these errors were encountered: