Updated linphone + improved ABI logging
This commit is contained in:
parent
36ce1b5570
commit
3eaf57ca70
2 changed files with 9 additions and 4 deletions
|
@ -31,6 +31,7 @@ import org.linphone.core.LinphoneCore.GlobalState;
|
|||
import org.linphone.core.LinphoneCore.RegistrationState;
|
||||
import org.linphone.core.LinphoneCoreException;
|
||||
import org.linphone.core.LinphoneCoreFactory;
|
||||
import org.linphone.core.LinphoneCoreFactoryImpl;
|
||||
import org.linphone.core.LinphoneCoreListenerBase;
|
||||
import org.linphone.core.LinphoneProxyConfig;
|
||||
import org.linphone.mediastream.Log;
|
||||
|
@ -561,10 +562,14 @@ public final class LinphoneService extends Service {
|
|||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("DEVICE=").append(Build.DEVICE).append("\n");
|
||||
sb.append("MODEL=").append(Build.MODEL).append("\n");
|
||||
//MANUFACTURER doesn't exist in android 1.5.
|
||||
//sb.append("MANUFACTURER=").append(Build.MANUFACTURER).append("\n");
|
||||
sb.append("MANUFACTURER=").append(Build.MANUFACTURER).append("\n");
|
||||
sb.append("SDK=").append(Build.VERSION.SDK_INT).append("\n");
|
||||
sb.append("EABI=").append(Version.getCpuAbis().get(0)).append("\n");
|
||||
sb.append("Supported ABIs=");
|
||||
for (String abi : Version.getCpuAbis()) {
|
||||
sb.append(abi + ", ");
|
||||
}
|
||||
sb.append("\n");
|
||||
sb.append("Used ABI=").append(LinphoneCoreFactoryImpl.ABI).append("\n");
|
||||
Log.i(sb.toString());
|
||||
}
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 05d712ecdd58c1613f688a33a697b1d795ce8caf
|
||||
Subproject commit e5c5c45147098164183cf4f11e55730688682a2c
|
Loading…
Reference in a new issue