For example, in android Java code, it calls a native method:
private native final String native_getParameters();
Where/how should I grep where is the C++ method defined native_getParameters();?
Thank you.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The C++ method will also contain your namespace (e.g. com.domain.your) and classname (e.g. YourActivity), it will look something like
Note the C++ _1 equates to the _ in your Java method