libavcodec.so: has text relocations

Today, I got the same error messages when testing my app with Android 6.0 on a Nexus 6 (Motorola). I solved my issue by checking the targetSDKVersion in the manifest file. Using “22” and not “23” as targetSDKVersion solved it. (See below) <uses-sdk android:minSdkVersion=”15″ android:targetSdkVersion=”22″ /> I also checked the build.gradle files for compile version … Read more