Dealloc JNI implementation experiment

Summary:
@public

Remove ability to configure Yoga to run with/without JNI fast calls on dalvik / art.
This switches to always run with fast calls.

Reviewed By: astreet

Differential Revision: D13144652

fbshipit-source-id: 091aab0cd1290d46346323d3e26a11dd0bb17187
This commit is contained in:
David Aurelio
2018-11-22 03:59:22 -08:00
committed by Facebook Github Bot
parent 8d5bbecd3d
commit 339c5574b8
4 changed files with 106 additions and 156 deletions

View File

@@ -8,6 +8,7 @@
package com.facebook.yoga;
import com.facebook.proguard.annotations.DoNotStrip;
import com.facebook.soloader.SoLoader;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Nullable;
@@ -16,7 +17,7 @@ import javax.annotation.Nullable;
public class YogaNode implements Cloneable {
static {
YogaJNI.init();
SoLoader.loadLibrary("yoga");
}
/**