Questions tagged [podspec]

This is the file extension for CocoaPods, which is distributed as a ruby gem

Cocoapods (http://cocoapods.org/) is a dependency management framework for XCode. It allows you to declaratively define project dependencies and have them included in the build of your project. It's like Apache Maven or Ruby Gems for XCode.

370 questions
0
votes
4 answers

How to add a artifactory? i'm getting error with pod repo-art add command

I am trying to add a artifactory using below command pod repo-art add [artifactory name] "url" but i'm getting following error [!] Error getting the index from Artifactory at: 'url' : undefined local variable or method `user_agent_argument' for…
MadLeo
  • 458
  • 1
  • 6
  • 24
0
votes
0 answers

Deploy .aar file and podspec file using flutter

I have build AAR file and Podspec File using Flutter, but I don't know how to deploy on maven or jfrog or some similar repository and podspec for flutter. Any help will be appreciated. Thanks
kapilkarda
  • 61
  • 1
  • 3
  • 7
0
votes
1 answer

Create multiple modules in CocoaPods like in SPM

My library is composed by two modules: The library core in Swift A module in C which includes CHTMLSAXParser This is the structure Now in order to compile it in SPM I need to create two targets: import PackageDescription let package = Package( …
danielemm
  • 1,636
  • 1
  • 14
  • 24
0
votes
1 answer

source_files in podspec when source code is organized into nested group folders

Under my framework directory, I have the codes organized into groups like- myFramework- (git repository root folder) .git LICENSE README.md myFramework - myFramework.podspec …
Natasha
  • 6,651
  • 3
  • 36
  • 58
0
votes
0 answers

CocoaPods could not find compatible versions for pod "ReactCommon/jscallinvoker"

I caught the issue: CocoaPods could not find compatible versions for pod “ReactCommon/jscallinvoker” when I try to pod install or pod install --repo-update How can I resolve this? My react-native version: 0.63 Mac OS: 10.15 Xcode: Version 11.6…
0
votes
0 answers

Add .a static library to IOS plugin

I need to import .a library into ios plugin. On plugin I see we have .podspec file but I dont know how to config in .podspec file to import .a library My library is tflite-dist/libs/ios/libtensorflow-lite.a My podspec file require "yaml" require…
Bình Trương
  • 380
  • 1
  • 13
0
votes
1 answer

pod lib create deployment_target

I created a CocoaPod library project for iOS via the pod lib create command. The podspec file that gets created adds the deployment target as iOS 8 in it. I want it to be iOS 11. There is no option to set it at the beginning as far as I know. If I…
Isuru
  • 30,617
  • 60
  • 187
  • 303
0
votes
1 answer

CocoaPods: Adding half dependency of AFNetworking

I have made my own private Cocoapods. At some point it had to access the network, so I added the dependency of AFNetworking in my Cocoapods as following s.dependency 'AFNetworking', '~> 2.3' AFNetworking has 5 subspecs which are…
AsifHabib
  • 944
  • 9
  • 25
0
votes
0 answers

Editing an existing private cocoapod repository

A former employee in my company created a private cocoapod repo. I downloaded the repo and added code to it. Now I wish to "publish" my changes so that anyone who runs pod install will get the new version. For this task, I followed the guide - How…
Idanis
  • 1,918
  • 6
  • 38
  • 69
0
votes
1 answer

How to use OpenCV with dart:ffi on iOS

I am developing a flutter plugin that uses OpenCV as a dependency to do some image processing. I created a bridge and initilized lookup function as mentioned in here. The basic sum function works, however as soon as I add s.dependency "OpenCV2" on…
Aawaz Gyawali
  • 3,244
  • 5
  • 28
  • 48
0
votes
1 answer

Sharing CocoaPods podspec data among multiple podspecs

I am maintaining a multi-modular SDK. I am planning to map each SDK module (library, framework, etc.) to its own pod, hence the need to create/maintain multiple podspecs. However, there is some data/info that is common across all these podspecs. For…
AKornich
  • 682
  • 5
  • 16
0
votes
1 answer

Error while integrating DocuSignSDK - Undefined Symbol: _OBJC_CLASS_$_*

Missing Symbols - DocuSignSDK After following the steps to integrate DocuSign Native iOS SDK via Cocoapods as per https://github.com/docusign/native-ios-sdk. Getting the following errors when building my sample app. Tried pod install after removing…
ashokds
  • 2,204
  • 1
  • 7
  • 11
0
votes
1 answer

What are YAML config files referred to as in the Kubernetes ecosystem?

Declarative definitions for resources in a kubernetes cluster such as Deployments, Pods, Services etc.. What are they referred to as in the Kubernetes eco-system? Possibilities i can think of: Specifications (specs) Objects Object…
AndrewMcLagan
  • 13,459
  • 23
  • 91
  • 158
0
votes
1 answer

Cocoapods will not install?

[!] Unable to find a specification for `Firebase/Analytics` You have either: * out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`. * mistyped the name or version. * not added the source repo…
0
votes
0 answers

how to setup podspec to depend on other local pod

I have 2 frameworks implemented using swift: A and B which depends on A. There is a podspec setup for A which works fine. Currently I am setting up the podspec for B, by defining spec.dependency 'A', '~> 0.0.1' Also A pod is included in Podfile of…
ZHSX
  • 41
  • 4