You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I implemented trucaller sdk based on your guidelines. When I tap trucaller button it's opened trucaller app and it's getting my profile details, because I already logged in that app. But I need some one mobile number details. How to read ?
My code is ....
In AppDelegate:
import TrueSDK
in didFinishLaunchingWithOptions launchOptions
//Setup TruecallerSDK
if TCTrueSDK.sharedManager().isSupported() {
TCTrueSDK.sharedManager().setup(withAppKey: "CY16U82*********0e5c", appLink: "https://sif2bea1******dfb8.truecallerdevs.com")
}
I implemented trucaller sdk based on your guidelines. When I tap trucaller button it's opened trucaller app and it's getting my profile details, because I already logged in that app. But I need some one mobile number details. How to read ?
My code is ....
In AppDelegate:
import TrueSDK
in didFinishLaunchingWithOptions launchOptions
//Setup TruecallerSDK
if TCTrueSDK.sharedManager().isSupported() {
TCTrueSDK.sharedManager().setup(withAppKey: "CY16U82*********0e5c", appLink: "https://sif2bea1******dfb8.truecallerdevs.com")
}
func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Swift.Void) -> Bool {
return TCTrueSDK.sharedManager().application(application, continue: userActivity, restorationHandler: restorationHandler)
}
In my ViewController:
import TrueSDK
class ViewController: UIViewController , TCTrueSDKDelegate {
@IBOutlet weak var btn: TCProfileRequestButton!
}
The text was updated successfully, but these errors were encountered: