podspec

No podspec found for googleapis in

房东的猫 提交于 2019-12-11 10:47:26
问题 Installing googleapis pod giving error "No podspec found for googleapis in ." I am trying to installing pod 'googleapis', :path => '.' but, its getting following error Analyzing dependencies Fetching podspec for googleapis from . [!] No podspec found for googleapis in . And my pod file is Uncomment the next line to define a global platform for your project platform :ios, '8.1' target 'appName' do # Uncomment the next line if you're using Swift or would like to use dynamic frameworks # use

How to fix 'pod update' getting stuck on a private pod?

我是研究僧i 提交于 2019-12-11 09:44:02
问题 When I try to run 'pod update', execution hangs on the download of my private library: Update all pods Analyzing dependencies Pre-downloading: `Obfuscated-Library` from `https://obfuscated.unfuddle.com/git/obfuscated_mvl/`, branch `develop` I’ve let it hang for about 10 minutes before Ctrl-C ’ing to cancel it. What on earth is going on? Here is some information about my private pod Private Library .podspec # # Be sure to run `pod spec lint Obfuscated-Library.podspec' to ensure this is a #

How to use pod package to create a compiled framework

情到浓时终转凉″ 提交于 2019-12-11 03:27:42
问题 I am trying to use the cocoa pods package extension to create a compiled framework. The example project with source code and pod spec can be found here: https://github.com/avnerbarr/TestFramework.git The resulting output can be found here: https://github.com/avnerbarr/TestFrameworkCompiled The main idea is that I want to create a project using cocoa pods. When I will need to distribute the close source - I need all of the dependencies to be contained in the resulting framework. I don't want

Pod library not installing properly

血红的双手。 提交于 2019-12-11 02:07:20
问题 I have a project XyzAbc with proj structure --LICENSE --XyzAbc ----XyzAbc.h ----Info.plist ----file1.swift ----file2.swift --Products ----XyzAbc.framework After building this project I pick this XyzAbc.framework and push it in github account that has folder structure --XyzAbc.framework --.gitignore --LICENSE --XyzAbc.podspec --README.md I created XyzAbc.podspec file in my local machine its structure is Pod::Spec.new do |s| s.name = "" s.version = "0.1.1" s.summary = "" s.description = "" s

Cocoa podspec and path for dependency

允我心安 提交于 2019-12-09 07:57:14
问题 how can I specify in podspec a local path for an dependency ? like : s.dependency 'MyLibrary', :path => '../MyLibrary' thanks 回答1: You should use the :path keyword in your Podfile : pod 'AFNetworking', :path => '~/Documents/AFNetworking/AFNetworking.podspec' Tips: If you don't know the path, you can drag & drop the file in your Podfile and it will display it. EDIT I did not understand correctly what the OP was asking for, here is the correct answer: Put the local dependency inside your pod's

Lint a Swift cocoa pod with SSZipArchive dependency

こ雲淡風輕ζ 提交于 2019-12-07 08:46:03
问题 Anyone had any luck creating a pod with a SSZipArchive dependency? My classes are all in Swift but I'm including my bridging file as well (#import "SSZipArchive"). When I try to lint I get 9 errors all related to SSZipArchive. Please let know your thoughts. Thanks so lot! ERROR | SSZipArchive/SSZipArchive/minizip/ioapi.h:45:10: error: include of non-modular header inside framework module 'SSZipArchive.ioapi' NOTE | Target Support Files/Pods-SSZipArchive/Pods-SSZipArchive-umbrella.h:5:9: note:

How to make a dynamic framework(Swift) based on two static libraries using Cocoapods

耗尽温柔 提交于 2019-12-06 06:07:38
问题 I want to make a dynamic framework that incorporates two 3-rd party frameworks with static libraries and later add it as a pod to my project. Here are their podspec files IndoorsSDK-iOS.podspec (By the way, this one lacks modulemap in .framework file) IndoorAtlas.podspec I tried to add them as s.dependency in my podspec file but got following error Pods error - target has transitive dependencies that include static binaries Tried to include them as s.vendored_frameworks but got following

Cocoapods specify podspec xcconfig value for Debug only

℡╲_俬逩灬. 提交于 2019-12-06 03:47:27
问题 I am using cocoapods and want to specify a value in the pod's podspec using the xcconfig parameter that would be specific to Debug mode. currently, using : s.xcconfig = { "GCC_PREPROCESSOR_DEFINITIONS" => "MY_DEFINE=1" } will set the value for both Debug and Release modes. Also tried using : s.xcconfig = { "GCC_PREPROCESSOR_DEFINITIONS[config=Debug]" => "MY_DEFINE=1" } but, altho this sets it in the pod's preprocessor macros, it doesn't seem to register during execution of the code, unlike

Lint a Swift cocoa pod with SSZipArchive dependency

懵懂的女人 提交于 2019-12-05 12:59:05
Anyone had any luck creating a pod with a SSZipArchive dependency? My classes are all in Swift but I'm including my bridging file as well (#import "SSZipArchive"). When I try to lint I get 9 errors all related to SSZipArchive. Please let know your thoughts. Thanks so lot! ERROR | SSZipArchive/SSZipArchive/minizip/ioapi.h:45:10: error: include of non-modular header inside framework module 'SSZipArchive.ioapi' NOTE | Target Support Files/Pods-SSZipArchive/Pods-SSZipArchive-umbrella.h:5:9: note: in file included from Target Support Files/Pods-SSZipArchive/Pods-SSZipArchive-umbrella.h:5: ERROR |

Why is my library not able to expand on the CocoaPods website?

别等时光非礼了梦想. 提交于 2019-12-05 02:52:29
I'm trying to access my library's information through the CocoaPods website, but I'm not able to. All the other libraries seem to be able to expand (mine is MKWeatherUndergroundKit) Here is my podspec Pod::Spec.new do |s| s.name = "MKWeatherUndergroundKit" s.version = "0.6" s.summary = "A simple iOS and OS X library for retrieving weather information using the Weather Underground API" s.homepage = "https://github.com/MendyK/MKWeatherUndergroundKit" s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "MendyK" => "myEmail@gmail.com" } s.social_media_url = "https://twitter.com/MenndK"