Can anyone give me a hint how to work with Android InputStream in native code.
More specific example: Java code
public class SomeParser {
public native ArrayList<String> parse(InputStream stream);
}
I need to read InputStream in native and return matching patterns to Android Java code.
stream is BufferedInputStream from HttpRequest