Ошибка установки IndoorAtlasWayfinding Pod - PullRequest
0 голосов
/ 08 января 2019

При запуске / установке моего файла pod

use_frameworks!
target 'IndoorNav' do
 source 'git@github.com:IndoorAtlas/CocoaPods-Specs.git'
 pod 'IndoorAtlas', '2.8.1'
 pod 'IndoorAtlasWayfinding', '2.8.0'
end

Я получаю следующую ошибку

Analyzing dependencies
Cloning spec repo `indooratlas` from `git@github.com:IndoorAtlas/CocoaPods-Specs.git`
[!] Unable to add a source with url `git@github.com:IndoorAtlas/CocoaPods-Specs.git` named `indooratlas`.
You can try adding it manually in `~/.cocoapods/repos` or via `pod repo add`.

Я также перепробовал множество решений, обсуждавшихся на https://github.com/CocoaPods/CocoaPods/issues/4293, но не смог найти ответ. Может кто-нибудь, пожалуйста, помогите здесь?

1 Ответ

0 голосов
/ 09 января 2019

Я думаю, что подфайл должен быть:

use_frameworks!
target 'IndoorNav' do
 source 'https://github.com/IndoorAtlas/CocoaPods-Specs.git'
 pod 'IndoorAtlas', '2.8.1'
 pod 'IndoorAtlasWayfinding', '2.8.0'
end
...