I can not receive messages TCP using netP5. for android

I am using import netP5. *;
for a TCPclient.
TcpClient myClient;
NetListener nl1 = new NetListener() {
public void netEvent(NetMessage m) {
println("netEvent (tcpc) : "+ new String( m.getData() ) );
}
public void netStatus(NetStatus s) {
println("netStatus (tcpc) : "+s);
}
};

//192.168.1.7:4560

myClient = new TcpClient(nl1, “192.168.1.7”, 7905, TcpClient.MODE_STREAM); //, TcpClient.MODE_STREAM
myClient.send("[OK_STARTED]"); //====this code is good sending, and reciving in my programm on windows

but in code
NetListener nl1 = new NetListener() {
public void netEvent(NetMessage m) {
println("netEvent (tcpc) : "+ new String( m.getData() ) );
}
public void netStatus(NetStatus s) {
println("netStatus (tcpc) : "+s);
}
};

Not WORKING!!!
FATAL EXCEPTION: Thread-2
Process: processing.test.cameraworker, PID: 6405
java.lang.OutOfMemoryError: Failed to allocate a 1532187728 byte allocation with 6291456 free bytes and 239MB until OOM, max allowed footprint 23731952, growth limit 268435456
at netP5.Bytes.toByteArray(Unknown Source:0)
at netP5.AbstractTcpClient.run(Unknown Source:39)
at java.lang.Thread.run(Thread.java:764)

I need to send and transfer text strings