Security warning on libdvm.so noticed while deploying Android apps

Were this your own jni library or native executable the solution would be to update to ndk r8c or later as discussed at:

mylib.so has text relocations. This is wasting memory and is a security risk. Please fix

in order to obtain a fix for https://code.google.com/p/android/issues/detail?id=23203

However as this appears to be in a platform library (specifically the Dalvik VM itself) rather than something you built, there is not much of anything you can do. You'll likely see this on every Activity process (or at least runtime) startup, until your device manufacturer does an update.

It is only a warning though.


I was getting this error because I was trying to install an APK with minSdkVersion set higher than the device supported.


I had the same error and i fixed it by removing other versions of the app installed on the device.