How does Android OS handle permissions with native code running within an NDK compiled .apk? It seems to me that because the JNI is just calling upon native functions, the actual NATIVE portion of the code shouldn't be affected by Android permissions. For example, I am looking to develop an Android app (.apk) that writes a file under data/system. AOS already mounts data/system as RW so I've already been able to develop a native program that performs the write easily. My thinking is that when I implement this using the NDK, I will not have to set permissions to write to the directory because of the native implemenation. Is this assumption correct?
Thanks, David