I trying to use FolioReaderKit
in my project. At first I download FolioReaderKit
example project and install pod like this:
platform :ios, '9.0'
use_frameworks!
inhibit_all_warnings!
def shared_pods
pod 'FolioReaderKit', path: '../'
end
def testing_pods
pod 'Quick', '1.3.2'
pod 'Nimble', '7.3.1'
end
target 'Example' do
shared_pods
end
target 'Storyboard-Example' do
shared_pods
end
target 'MultipleInstance-Example' do
shared_pods
end
target 'FolioReaderTests' do
shared_pods
testing_pods
end
After that I open project and build app. All works fine. Now I trying to add FolioReaderKit
in my project. I read how to use Cocoapods
in GitHub
on FolioReaderKit
page. And my podfile look like this:
platform :ios, '9.0'
use_frameworks!
target 'myProject' do
pod 'FolioReaderKit'
end
But when I use this pod in my app I get next error: Primary key property 'name' does not exist on object 'RealmSwiftClassPermission'
. Why this happens and how to fix this error?