Log the correct CPU ABI when service starts

This commit is contained in:
Sylvain Berfini 2015-05-07 12:06:06 +02:00
parent a958c841ee
commit 2f512441f0

View file

@ -494,7 +494,7 @@ public final class LinphoneService extends Service {
//MANUFACTURER doesn't exist in android 1.5.
//sb.append("MANUFACTURER=").append(Build.MANUFACTURER).append("\n");
sb.append("SDK=").append(Build.VERSION.SDK_INT).append("\n");
sb.append("EABI=").append(Build.CPU_ABI).append("\n");
sb.append("EABI=").append(Version.getCpuAbis().get(0)).append("\n");
Log.i(sb.toString());
}