2016-11-09 1 views
0

나는 자식 리포지토리를 다운로드합니다. Google지도를 사용합니다. 프로젝트를 컴파일 할 때 프로젝트에 160 개의 오류가 표시됩니다. 이미지도를 업데이트하고, 버전을 변경하고, 설치하고, 보석 업데이트를 시도합니다. 아마도 podfile에 문제가있을 수 있습니다.Google지도에서의 코코아 포드 오류

Podfile :

# Uncomment the next line to define a global platform for your project 
    source 'https://github.com/CocoaPods/Specs.git' 
    platform :ios, '9.0' 
    target 'FamilyNexus' do 
    # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 
use_frameworks! 
# Pods for Myapp 
pod 'Firebase/Core' 
pod 'Firebase/Database' 
pod 'GoogleMaps' 
pod 'GooglePlaces' 
pod 'SideMenu' 
pod 'Alamofire' 
pod 'AlecrimCoreData', :git => 'https://github.com/Alecrim/AlecrimCoreData.git', :branch => 'develop' 

target 'MyappTests' do 
inherit! :search_paths 
# Pods for testing 
pod 'GoogleMaps' 
pod 'Alamofire' 
end 

target 'MyappUITests' do 
inherit! :search_paths 
# Pods for testing 
pod 'GoogleMaps' 
pod 'Alamofire' 
end 
end 

Error image

+0

use_frameworks를 제거하려면 구글지도 포드의 버전을 다운 그레이드! 및 Alamofire –

+0

작동하지 않는다 :( –

답변

0

버전과 오류이었다.

나는 pod 'GoogleMaps', '2.1.0'

관련 문제