When I execute a bin file in my code, Android L 5.0 blocking the execution of these file with following error
Error: only position independent executables (PIE) are supported
My executable files are an FFmpeg converter and a Sox converter
I moved these files from a raw folder to /data/data/com.mypackage/app_bin
and call
Runtime.getRuntime().exec("/data/data/com.mypackage/app_bin/ffmpeg {commands}")
Could any one please help me to resolve this issue?