Skip to content

Instantly share code, notes, and snippets.

@fvrmatteo
Created November 24, 2017 15:22
Show Gist options
  • Select an option

  • Save fvrmatteo/dc2f6c77a112fb07fc99c21cb0ed1265 to your computer and use it in GitHub Desktop.

Select an option

Save fvrmatteo/dc2f6c77a112fb07fc99c21cb0ed1265 to your computer and use it in GitHub Desktop.
package infiltration;
import android.content.Context;
public class outcry {
public outcry(Context context, String str) {
try {
init(context, str);
} catch (Exception e) {
e.printStackTrace();
}
}
private native void init(Context context, String str);
static {
System.loadLibrary("secondhand");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment