-
Notifications
You must be signed in to change notification settings - Fork 578
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
Realm NDK version #4740
Comments
@lucioroadtoglory Thanks for the report, this sounds like an issue with AppCenter. According to this response, you should be able to add a pre-build step which to install Please let me know if this doesn't solve your problem! |
It's works very well! I added at my SDKMANAGER=$ANDROID_HOME/tools/bin/sdkmanager
echo y | $SDKMANAGER "ndk;21.0.6113669" The version |
I'm happy that it worked! :) |
Hello, I have this same problem with the ndk, but instead of being in the app, I get the same error with a library, I try to add the prebuild, but the error also jumps
|
Are you trying to build at AppCenter? |
You can try add this on source project as # Set NDK version to download - r21
if [ "$APPCENTER_ANDROID_MODULE" ]
then
SDKMANAGER=$ANDROID_HOME/tools/bin/sdkmanager
echo y | $SDKMANAGER "ndk;21.0.6113669"
fi
# Show what's version is available
echo 'Available NDK versions:'
ls $ANDROID_HOME/ndk |
should it look like this? if [ "react-native-epson-epos-printer" ] |
No. The |
I have received this error message already with the configuration provided before the prebuild Exception in thread "main" javax.net.ssl.SSLException: readHandshakeRecord |
I tried one more time and got the error again
this is what the pre-build looks like SDKMANAGER=$ANDROID_HOME/tools/bin/sdkmanager if [ "$APPCENTER_ANDROID_MODULE" ] Show what's version is availableecho 'Available NDK versions:'
|
But the NDK is downloading? You can try this removing IF syntax, just put the body inside if, like: # Set NDK version to download - r21
SDKMANAGER=$ANDROID_HOME/tools/bin/sdkmanager
echo y | $SDKMANAGER "ndk;21.0.6113669" |
. |
How frequently does the bug occur?
All the time
Description
I'm trying to build an Android app (APK) on the App Center but the Realm NDK version require
21.0.6113669
and the App Center has only this versions available:21.4.7075529
,23.2.8568313
,24.0.8215888
.Both following files have the same version:
Stacktrace & log output
Can you reproduce the bug?
Not yet
Reproduction Steps
No response
Version
10.19.5
What SDK flavour are you using?
Local Database only
Are you using encryption?
No, not using encryption
Platform OS and version(s)
Android - the version doesn't matter
Build environment
Which debugger for React Native: ..
Cocoapods version
No response
The text was updated successfully, but these errors were encountered: