吊舱更新--冗长的未完成,挂起.
CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.2/GoogleToolboxForMac.podspec.json exists! Returning local because checking is only perfomed in repo update
CDN: trunk Relative path: Specs/7/4/b/GoogleToolboxForMac/2.1.3/GoogleToolboxForMac.podspec.json exists! Retu
我用cocoapods更新中国的libs,我县的网络是有限的。所以..。
Podfile添加一行:"pod 'SQLCipher‘“我运行:
pod install --no-repo-update
失败!
删除“豆荚SQLCipher”
跑:
pod install --no-repo-update .
错误:
[!] CocoaPods was not able to update the `master-1` repo. If this is an unexpected issue and persists you can inspect it running `pod
Firebase已经更新到4.0,因为它破坏了很多代码,所以我需要将安装保持在3.x-ish。我以前从来没做过这样的事,但是我会犯这样的错误:
[!] Unable to satisfy the following requirements:
- `Firebase/RemoteConfig (= 1.3.4)` required by `Podfile`
- `Firebase/RemoteConfig (= 1.3.4)` required by `Podfile`
None of your spec sources contain a spec satisfying the depe
我有pod版本1.5.2,最新的版本,但我有问题从防火墙安装ml工具包,我得到如下:
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "Firebase/MLVision":
In Podfile:
Firebase/MLVision
None of your spec sources contain a spec satisfying the dependency: `Firebase/MLVision`.
You have either:
每次我尝试更新其中一个时,另一个就会被降级。
Google/SignIn正在接受Firebase 3。* Firebase正在接受Google/SignIn 3。*
但我需要then的4.*版本。
我该怎么办?我想我需要更新我的部分代码。
这是当我尝试强制两个pod的版本时发生的情况:
Update all pods
Updating local specs repositories
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "Google/SignIn":
我将茧头更新为1.0.0版。我运行命令Pod安装,但是我立即得到了错误,如下所示
You have either:
* out-of-date source repos which you can update with `pod repo update`.
* mistyped the name or version.
* not added the source repo that hosts the Podspec to your Podfile.
Note: as of CocoaPods 1.0, `pod repo update` does not happen on `po
我刚刚成功上传了我的pod (pod trunk push MonarchRouter.podspec)的新版本(1.0.1),但在尝试pod install时收到以下消息
CocoaPods could not find compatible versions for pod "MonarchRouter":
In Podfile:
MonarchRouter (~> 1.0.1)
None of your spec sources contain a spec satisfying the dependency: `MonarchRouter (~&
这是我当前的Podfile: # Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'atom' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
pod 'Firebase/Core', '~> 5
Podfile内容
platform :ios, '11.0'
target 'AVWXKit' do
use_frameworks!
pod 'AVWXKit'
end
终端输入:pod install
错误信息:
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.
我想更新Parse SDK。所以我在终端机运行pod update 'Parse'。也没有效果。解析版本仍然是1.8.5。只有当我运行pod update时,Parse版本才成为最新的1.14.2版本。然而,它也更新了其余的豆荚,这不是我需要的。有人遇到过这种情况吗?这是我的文件:
platform :ios, '8.0'
target 'MIPA' do
pod "AKPickerView"
pod 'MagicalRecord/Shorthand', '~> 2.2'
pod '
我正在使用许多联接进行查询。对于一个“联合”表,有一对多的关联,我需要在这个表上聚合(和)。
每次执行查询时,我都会提取大约500到1000条记录。它大约需要100到200 has (它有许多连接)。但是,在添加聚合后,它将执行增加到大约5-6秒!
我尝试了2种解决方案(问题在于最后两篇专栏文章:、SubchargesTo、和都因为一个很大的因素而性能恶化:
第一:
SELECT
RR.Id,
Customer.Name AS Customer,
PrincipalsCustomer.Name AS PrincipalsC
这是我的Podfile:
source 'https://github.com/CocoaPods/Specs'
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
target 'Unity-iPhone' do
pod 'Google-Mobile-Ads-SDK', '7.3.1'
pod 'Firebase/Core'
end
当我运行'pod install‘时,它工作得很好
输
为了我的目标-C CocoaPods应用程序,我正在尝试通过iOS安装Firebase。我的Podfile如下:
target 'RandomName' do
pod 'Firebase/Core'
pod 'Firebase/AdMob'
end
当我运行pod install时,会得到以下错误:
[!] Unable to satisfy the following requirements:
- `Firebase/Core` required by `Podfile`
None of your spec sources conta
在运行pod install时,出现了以下错误
[!] CocoaPods could not find compatible versions for pod "OneSignalXCFramework":
In Podfile:
onesignal_flutter (from `.symlinks/plugins/onesignal_flutter/ios`) was resolved to 3.2.7, which depends on
OneSignalXCFramework (= 3.9.1)
None of your spec source
[!] 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 that hosts the Podspec to your Podfile. 我已经在过去的许多项
我无法构建使用CocoaPods的项目。我得到以下错误:
diff: /../Podfile.lock: No such file or directory
diff: Manifest.lock: No such file or directory error:
The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.`
$ pod install似乎工作得很好,并且在我的工作区中添加了一个Pods项目。我尝试过$ po
我正在使用iOS上的Firebase,我想添加GeoFire。我按照这里的说明操作:,但是在将pod 'GeoFire','>=1.1‘添加到我的pod文件并更新之后,我得到了这个错误
$ pod update
Update all pods
Updating local specs repositories
Analyzing dependencies
[!] Unable to satisfy the following requirements:
- `Firebase (~> 2.1)` required by `GeoFire (1.1.0)`
我刚刚尝试使用VNC Viewer和SSH通过CodeMagic构建我的flutter应用程序,但没有成功。 我已经尝试运行"pod install“,结果如下: Analyzing dependencies
firebase_analytics: Using Firebase SDK version '8.3.0' defined in 'firebase_core'
firebase_auth: Using Firebase SDK version '8.3.0' defined in 'firebase_core'
每次运行pod install或pod update命令时,将cocoapods从0.38.2更新为0.39.0后,将收到错误
[!] Unable to satisfy the following requirements:
- `GoogleAnalytics (= 3.13)` required by `Podfile`
项目信息: XCode 7,iOS9 SDK,8.0部署目标,位编码在项目设置中被禁用。
Podfile:
platform :ios, '8.0'
pod 'AFNetworking', '2.6.0'
pod
我试图安装pod 'Firebase/Functions',但失败了,出现以下错误: `!CocoaPods找不到pod“Firebase/Functions”的兼容版本:在Podfile中:Firebase/Functions 找到了满足Firebase/Functions依赖的规范,但它们需要更高的最低部署目标。 这是我的pod文件 # Uncomment the next line to define a global platform for your project
# platform :ios, '11.0'
target 'MyApp
我需要将我的firebase pod更新到最新版本,但是,当我尝试在我的项目上运行pod update或pod install时,我得到了以下错误 Update all pods
Updating local specs repositories
Analyzing dependencies
Pre-downloading: `MessageKit` from `https://github.com/MessageKit/MessageKit.git`, branch `3.0.0-swift5`
[!] CocoaPods could not find compatible vers
我正在尝试更新我的Xcode项目中的CocoaPods,但是当我尝试运行pod update时,它不工作。
我的播客文件:
source 'https://github.com/MapQuest/podspecs-ios.git'
target 'FireBaseFixed' do
pod 'Firebase', '3.11.0'
pod 'MOCA'
pod 'MapQuestMaps'
end
以及他们的回应
daortiz:FireBaseFixed dortiz$ pod update
U
在我的react本机项目中,在尝试安装模块firebase/crashlytics之后,我开始收到一个错误。我知道错误了
[!] CocoaPods could not find compatible versions for pod "FirebaseCore":
In Podfile:
FirebaseCore
FirebaseStorageInternal was resolved to 9.6.0, which depends on
FirebaseCore (~> 9.0)
RNFBApp (from `../node
如何删除或清除cocoapods缓存中的特定pod?
尝试直接删除整个缓存,需要很长时间才能取回所有pod。如何查看和移除缓存中的特定pod?
以下工作(更长时间提交):
# delete all cached pods
`rm -rf "${HOME}/Library/Caches/CocoaPods"`
# delete local Pods/*
rm -rf "`pwd`/Pods/"
# pod update to fetch latest. After entire cache deletion, it takes lot longer to
我已经采取了几个步骤来解决这个问题,包括删除node_modules,删除pod.lock,运行yarn cache clean,运行npx react-native-clean-project,运行pod install --repo-update ...但到目前为止,一切都没有奏效。这是一个世博会裸露工作流项目。
[!] CocoaPods could not find compatible versions for pod "ReactCommon/callinvoker":
In Podfile:
ReactCommon/callinvoker (from
当我运行pod install命令时,结果如下所示。
Analyzing dependencies
firebase_admob: Using Firebase SDK version '6.33.0' defined in 'firebase_core'
firebase_analytics: Using Firebase SDK version '6.33.0' defined in 'firebase_core'
firebase_auth: Using Firebase SDK version '6.33.0
我忠实地遵循了cocoapods的说明: Podfile是:
# Uncomment the next line to define a global platform for your project
# platform :ios '9.0'
target 'SquareTesting' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for
我有两张桌子PURCHASE_ORDER_HDR和PURCHASE_ORDER_DET。与键POH_ID链接。
标头表和详细表都包含DELIVERYDATE,其中详细信息的交付日期可以为空。
我想用标头的交付日期更新PURCHASE_ORDER_DET,其中细节的交付日期是NULL
尝试了下面这样的内容,这在语法上是不正确的。
UPDATE PURCHASE_ORDER_DET pod
INNER JOIN
(
SELECT poh.POH_ID as parentId,
poh.DELIVERYDATE as dlvDate
FROM PURCHASE_
我正在尝试添加facebook登录到颤音应用程序。我正在使用flutter_facebook_login。但是,当我尝试为iOS构建时,请给出错误:
Resolving dependencies of `Podfile`
[!] CocoaPods could not find compatible versions for pod "FBSDKLoginKit":
In Podfile:
flutter_facebook_login (from `.symlinks/plugins/flutter_facebook_login/io
我正在使用多个防火墙服务在我的反应本机项目。现在我试着加入破折主义
yarn add @react-native-firebase/crashlytics
但我犯了个错误
[!] CocoaPods could not find compatible versions for pod "Firebase/CoreOnly":
In snapshot (Podfile.lock):
Firebase/CoreOnly (= 8.12.1)
In Podfile:
RNFBApp (from `../node_modules/@react-native-f
我尝试运行命令"pod try Crashlytics",但Github总是要求身份验证。即使输入了正确的密码,我仍然收到这个错误。 $ pod try Crashlytics --verbose Updating spec repositories Updating spec repo .git Username for 'https://github.com': brunodeandrade Password for 'https://brunodeandrade@github.com': [!] CocoaPods was not ab
获取下面的错误,
Analyzing dependencies
Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`
Pre-downloading: `ExpoKit` from `http://github.com/expo/expo.git`, tag `ios/2.13.0`
Fetching podspec for `Folly` from `../node_modules/react-nativ
我正在使用react本机构建一个应用程序,我得到了以下错误时,我做pod install。
下面是完全错误.
[!] CocoaPods could not find compatible versions for pod "Firebase/CoreOnly":
In Podfile:
RNFBApp (from `../node_modules/@react-native-firebase/app`) was resolved to 12.4.0, which depends on
Firebase/CoreOnly (= 8.4.0)
None