linphone is a open source VOIP project.In this repository, we demonstrate how to integrate liblinphone library into a swift project. We include 3 common scenarios:
- make a phone call
- auto pick an incoming phone call
- registration and idle
-
Remember to modify Secret.plist to your account
-
Modify
demo()
inLinphoneManager.swift
to test different scenario like call out or pick an incoming call. -
Run the app, look your text console to get the linphone output details.
Make a sip call:
let calleeAccount = "CALLEE_SIP_NUMBER" // ex: 0702552520
...
func demo() {
makeCall()
}
- Build liblinphone-sdk library file for iOS
- (Chinese) 在 iOS/Swift中使用 liblinphone 函式庫
- (Chinese) 使用 linphone 函式庫發生 exc_bad_access 的除錯經驗
MIT License
Copyright (c) 2017
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.