Skip to content

Commit 24f9f75

Browse files
IvanKobzarevfacebook-github-bot
authored andcommitted
fbjni version to 0.2.2 (#31191)
Summary: android fbjni dependency bump to 0.2.2 The motivation is to address pytorch/pytorch#34682 that pytorch_android and react-native use different versions of fbjni with the same name libfbjni.so In case of loading 0.0.2 version it is missing functions in binary Fbjni is not changing much, that's why this will solve that problem for a long time (Until fbjni changed and versions will not be aligned) ## Changelog [Android][Added] fbjni version bump to 0.0.3 Pull Request resolved: #31191 Test Plan: Automated (relying on the test suite) and manual testing. Reviewed By: passy Differential Revision: D27330370 Pulled By: IvanKobzarev fbshipit-source-id: 2ea07d80d23f8dbc80e946a8818c1ecb8eb746e8
1 parent 532f5f3 commit 24f9f75

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ReactAndroid/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -452,9 +452,9 @@ dependencies {
452452
api("com.squareup.okhttp3:okhttp:${OKHTTP_VERSION}")
453453
api("com.squareup.okhttp3:okhttp-urlconnection:${OKHTTP_VERSION}")
454454
api("com.squareup.okio:okio:1.17.5")
455-
api("com.facebook.fbjni:fbjni-java-only:0.0.3")
456-
extractHeaders("com.facebook.fbjni:fbjni:0.0.2:headers")
457-
extractJNI("com.facebook.fbjni:fbjni:0.0.2")
455+
api("com.facebook.fbjni:fbjni-java-only:0.2.2")
456+
extractHeaders("com.facebook.fbjni:fbjni:0.2.2:headers")
457+
extractJNI("com.facebook.fbjni:fbjni:0.2.2")
458458

459459
javadocDeps("com.squareup:javapoet:1.13.0")
460460

ReactAndroid/src/main/libraries/fbjni/BUCK

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ fb_native.android_prebuilt_aar(
1515

1616
fb_native.remote_file(
1717
name = "fbjni-binary-aar",
18-
sha1 = "d9e1b6ebbe55fe25f6ee6257ef64588e0f8a8db0",
19-
url = "mvn:com.facebook.fbjni:fbjni:aar:0.0.2",
18+
sha1 = "b20ae3406d911a28315b6ab53f122075500bfa27",
19+
url = "mvn:com.facebook.fbjni:fbjni:aar:0.2.2",
2020
)

0 commit comments

Comments
 (0)