cocoapods

MoPub install AdMob via CocoaPods

▼魔方 西西 提交于 2019-12-11 13:55:22
问题 I attempted to install AdMob support via cocoapods with the following podfile: use_frameworks! pod 'mopub-ios-sdk' pod 'mopub-ios-sdk/AdMob' ..and received the following error: [!] The 'Pods' target has transitive dependencies that include static binaries: (/Users/<username>/Documents/Developer/<app>/Pods/Google-Mobile-Ads-SDK/GoogleMobileAdsSdkiOS-7.1.0/GoogleMobileAds.framework) Any idea why that's happening? I'm running El Capitan 10.11.4, CocoaPods 0.39.0, and XCode 7.3. 回答1: This is the

Flurry.h not found through bridging header when using cocoapods

主宰稳场 提交于 2019-12-11 13:52:36
问题 In my xcode workspace (using cocoapods), I am not able to add Flurry.h in my bridging header . Other headers from other pods like Dropbox, etc are working fine. Only Flurry headers are not being recognized. I have my podfile as below: platform :ios, '9.0' use_frameworks! pod 'Alamofire', '~> 3.1' pod 'SwiftyDropbox', '~> 2.0.3' pod 'Flurry-iOS-SDK/FlurrySDK' pod 'Flurry-iOS-SDK/FlurryAds' pod 'Parse' My Bridging Header is as below (with the problem highlighted!): Here is the Pods project

CocoaPods use_frameworks! prevents XCode from linking libraries

╄→尐↘猪︶ㄣ 提交于 2019-12-11 12:56:25
问题 Since I've begun to (try) to use_frameworks! my local development pods can't access code that is included at the top level of my project. This used to work, and still works if I comment out use_frameworks in my dead-simple Podfile below: platform :ios, '9.0' use_frameworks! #comment this out and all is well target :test_use_frameworks do pod 'STHTTPRequest', '1.0.0' #test a well known library pod 'test_pod', :path => '../test_pod/' #Attempt to use that library from within local pod end I've

Getting non-master branch from Cocoapods?

早过忘川 提交于 2019-12-11 12:41:25
问题 I've been using SwiftyJSON and Alamofire in a project. Recently I downloaded XCode 7 beta. Both SwiftyJSON and Alamofire have separate, non-master branches for Swift 2. Is there a way to get these via CocoaPods, or do I need to install them in the traditional way? I tried searching on the CocoaPods website to see if these branches had been submitted as separate Pods, but nothing came up. I'm wondering if there is a Podfile syntax that allows you to get a non-master branch. 回答1: You can

Target overrides the `OTHER_LDFLAGS` build setting while installing pod in rn firebase

最后都变了- 提交于 2019-12-11 11:57:57
问题 I am trying to add firebase in my react native app in ios. I have created Podfile with pod init. But when i'm trying to install pod with pod install i'm getting this error. Also when i run the app it shows this: i have already tried adding $(inherited) in target Build Settings -> Other linker flags. But somehow it's not working. I'm using : React Native "0.58.5" React Native Firebase "^5.2.2" Here is my Podfile # Uncomment the next line to define a global platform for your project platform

Update AFNetworking from version 1.2.1 to 3.1.0

对着背影说爱祢 提交于 2019-12-11 11:52:14
问题 Iam about to update our post project in Objective C to meet the new Apple requirement for support Ipv6 only. My AFNetworking libray is now 1.2.1. I doubt it is the problem. I want to update to latest version support IPv6 but when running pod install I get this error [!] Unable to satisfy the following requirements: AFNetworking (~> 3.1.0) required by Podfile AFNetworking (= 3.1.0) required by Podfile.lock AFNetworking (~> 1.2.1) required by AFRaptureXMLRequestOperation (1.0.2) Here is my

iOS Cocoapods -pod(MBProgressHUD) installed give error stuck at “Analyzing dependencies” and “Header file missing”

三世轮回 提交于 2019-12-11 11:35:51
问题 I have installed 2 pods MBProgessHUD and PEPhotocropEditor it's working correctly till now but suddenly I got error for MBProgressHUD.h file not available. And I tried it with pod update and again pod install command but still not able to solve the problem. When I fier both the command terminal stucked at Analysing dependencies. and pods are looking in red color. 回答1: My problem is solved with following procedure. 1) Take Backup of your Project to other place. 2) open Terminal , and go to

Crash after manually updating GoogleTagManager to 7.1.1

我们两清 提交于 2019-12-11 10:58:25
问题 NOTE : We use cocoapods to get the GoogleTagManager frameworks via a separate project, and then manually integrate the static frameworks into our Swift Project. With GoogleTagManager(6.0.0), our app is working fine, same for the GTM features. Now that we are planning to implement FirebaseMessaging , we decided to update GTM first so we can also use the latest version of FirebaseMessaging . Our pod file looks like this: target 'SampleProject' platform :ios, '10.0' pod 'GoogleTagManager' Here

Google Ad Mob 7.0 for iOS updating with Pod

ぃ、小莉子 提交于 2019-12-11 10:56:13
问题 I updated Pod file for Google Ad Mob using command "pod update", it got updated to 7.1.0 from 6.12.12, But now when I run, it says "GADInterstial.h" file not found , previously I had no such issues. Many suggest to use #import , because now the SDK is framework. But still the same issue. 来源: https://stackoverflow.com/questions/29469133/google-ad-mob-7-0-for-ios-updating-with-pod

AudioKit 4.2 from CocoaPods Issue miss file

我怕爱的太早我们不能终老 提交于 2019-12-11 10:48:51
问题 Installing AudioKit using CocoaPods gets an issue missing a file. On file AKModulatedDelayDSP.hpp ... #import "ModulatedDelay.hpp" 'ModulatedDelay.hpp' file not found Tried several times on different projects getting the same issue. Any ideas ? 回答1: It depends on what you're importing from AudioKit. I don't think you'd get this with a vanilla project. But, if what you're doing requires access to core, then you might not want to use Cocoapods anyway. If you shared your project I could give you