Created
November 24, 2017 15:22
-
-
Save fvrmatteo/dc2f6c77a112fb07fc99c21cb0ed1265 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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