HDLLinphoneSDKDemoNew/HDLLinphoneSDK/src/main/java/com/hdl/hdllinphonesdk/HDLLinphoneKit.java
@@ -557,14 +557,22 @@ * 获取当前通话状态 */ public Call.State getCallState() { return HDLLinphoneService.getInstance().getCurrentCallState(); if(HDLLinphoneService.getInstance() == null) { return null; }else { return HDLLinphoneService.getInstance().getCurrentCallState(); } } /** * 获取当前通话状态是否为来电中 */ public boolean isIncomingReceivedCallState() { return HDLLinphoneService.getInstance().getCurrentCallState() == Call.State.IncomingReceived; if(HDLLinphoneService.getInstance() == null || HDLLinphoneService.getInstance().getCurrentCallState() == null){ return false; }else{ return (HDLLinphoneService.getInstance().getCurrentCallState() == Call.State.IncomingReceived); } } /** HDLLinphoneSDKDemoNew/HDLLinphoneSDK/src/main/java/com/hdl/hdllinphonesdk/core/service/HDLLinphoneService.java
@@ -202,6 +202,7 @@ * 初始化Linphone */ private void initLinphone() { currentCallState = Call.State.Idle; String basePath = getFilesDir().getAbsolutePath(); Factory.instance().setLogCollectionPath(basePath); Factory.instance().enableLogCollection(LogCollectionState.Enabled); HDLLinphoneSDKDemoNew/app/libs/HDLLinphoneSDK-V1.0.1.aarBinary files differ
Shared.Droid.HDLLinphone/Shared.Droid.HDLLinphone/Jars/HDLLinphoneSDK-V1.0.1.aarBinary files differ
Shared.Droid.HDLLinphone/Shared.Droid.HDLLinphone/Properties/AssemblyInfo.cs
@@ -22,5 +22,5 @@ // Minor Version // Build Number // Revision [assembly: AssemblyVersion("1.0.1.5")] [assembly: AssemblyFileVersion("1.0.1.5")] [assembly: AssemblyVersion("1.0.1.6")] [assembly: AssemblyFileVersion("1.0.1.6")]