Log the correct CPU ABI when service starts
This commit is contained in:
parent
a958c841ee
commit
2f512441f0
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue