We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The recent update to the Podfile in commit 82b31f6 changed the name of the pod library target from "libPods" to "libPods-Microsoft Tasks".
However, the Microsoft Tasks project still references the pods library with the old name.
The linker (ld) is failing because of this.
I had to remove the invalid reference to get the app to run.
The text was updated successfully, but these errors were encountered:
To fix Cocoapod and -lPods linker issues, follow below: Edit Podfile:
platform :ios, '7.1' target 'Microsoft Tasks' do pod 'ADALiOS' end
Delete libPods.a from Linked Frameworks and Libraries under General tab on "Microsoft Tasks" target.
Sorry, something went wrong.
Wrote a Swift Implementation of the same app. Hope it helps https://github.com/jenasubodh/azuread-ios-swift
No branches or pull requests
The recent update to the Podfile in commit 82b31f6 changed the name of the pod library target from "libPods" to "libPods-Microsoft Tasks".
However, the Microsoft Tasks project still references the pods library with the old name.
The linker (ld) is failing because of this.
I had to remove the invalid reference to get the app to run.
The text was updated successfully, but these errors were encountered: