This is how i am keeping strings in JNI
extern "C" JNIEXPORT jstring JNICALL
Java_com_galaxy_mars_moon_MainActivity_getDefaultNegative(JNIEnv* env, jobject)
{
std::string defaultNegative = "Cancel";
return env->NewStringUTF(defaultNegative.c_str());
}
And i call this native function from java class.
My Questions are :
- Would it be able to decompiling person to identify?
- I uses Proguard too, Does proguard will make obfuscate code from it?
- Will it be converted to .so file and will it be readable to decompiling person?
Thank you in advance. I hope someone will throw more light on it
Aucun commentaire:
Enregistrer un commentaire