I'm new in ReactNative
, and I want to import a Java
class into my ReactNative
project. Is that possible? How should I do that?
The Java
class includes using of Java BigInteger
:
public java.math.BigInteger randomPrimeBigInteger(int bitlen, int certainty, java.util.Random rng) {
return new java.math.BigInteger(bitlen, certainty, rng);
}