Questions tagged [podfile]

The Podfile is a specification that describes the dependencies of the targets of one or more Xcode projects. The file should simply be named Podfile.

A pod file is used with CocoaPod and CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects.

370 questions
1
vote
0 answers

CocoaPods could not find compatible versions for pod "Google-Mobile-Ads-SDK"

I'm using Fastlane with unity plugin and gym. After unity step I have a Podfile with pods: source 'https://cdn.cocoapods.org/' platform :ios, '11.0' target 'UnityFramework' do pod 'AppLovinMediationGoogleAdapter', '10.6.0.0' pod…
1
vote
1 answer

Issue after Flutter Firebase upgrade? ARC Semantic Issue (Xcode): No known class method for selector 'appleCredentialWithIDToken:rawNonce:fullName:'

After Xcode build done of flutter run, I met the error as below. I'm not sure what the reason is, I think this is because of flutter 3.10.0 upgrade. but not sure the reason. Please help me to guide. This will generate a JSON format file containing…
BranchDev
  • 144
  • 1
  • 10
1
vote
2 answers

Black Screen on Simulator After Upgrading React Native to 0.71.2 and iOS 15.2

I recently upgraded to 0.71.2 and when my app opens in the simulator, it shows the Splash screen and then fades out to a black screen. I see the following in the logs in Xcode: 2023-03-05 14:26:02.425529-0700 swoop[46482:1781261] : The…
TheJediCowboy
  • 8,924
  • 28
  • 136
  • 208
1
vote
0 answers

Flutter: Error compiling iOS app on CodeMagic, 'file_picker' not found

I don't own a Mac and am compiling by CodeMagic, but I'm trying to solve this problem early on, i've done everything but the same thing happens all the time. On Android it works fine. Can anyone help…
casleandro
  • 11
  • 2
1
vote
2 answers

Errors appearing after updating the Firebase auth package -- Flutter

I added the firebase auth package then got an error in the ios podfile [!] CocoaPods could not find compatible versions for pod "Firebase/Auth": In Podfile: Firebase/Auth firebase_auth (from `.symlinks/plugins/firebase_auth/ios`) was resolved to…
akk
  • 11
  • 1
1
vote
1 answer

How to solve "property with retain (or strong) attribute must be of object type" on React Native?

I am trying to build a React Native app in iOS that use Firebase, but I got this error: error screenshot error: property with 'retain (or strong)' attribute must be of object type While building module 'FirebaseStorage' This is a the error log: In…
fabio
  • 43
  • 7
1
vote
0 answers

##[error]Error: /usr/bin/xcodebuild failed with return code: 65 while creating react native ios pipeline

These are the errors I'm getting in xcode build when I try to create CI pipeline for IOS react native: /Users/runner/work/1/s/node_modules/react-native-cashfree-pg-sdk/ios/CashfreePgApi-Bridging-Header.h:1:9: 'React/RCTBridgeModule.h' file not…
Varun
  • 11
  • 2
1
vote
0 answers

typedef redefinition with different types ('uint8_t' (aka 'unsigned char') in xcode 14

I am getting above error while running build in Xcode 14. Have tried running yarn ios as well, but that also fails with "(in target 'RCT-Folly' from project 'Pods')". Have been through many threads from past 1 week, nothing seems to work for me. I…
1
vote
1 answer

Retrieve a pod inside a repo nested folder

We have a developing framework which sharing repo with other frameworks. Here our currently structure: - Repo root: - Framework A - Framework B - OurFramework: - OurFramework: - OurFramework.podspec - Code and other stuffs Now…
Hai Hoang
  • 15
  • 7
1
vote
0 answers

Problems with Android Studio and Cocoapods

I´m complete new to Android Studio with multiplatform projects and Kotlin. Actually I´m wondering because of two things. After writing the logic in Kotlin shared/src/commonMain/... I wanted to test it by writing an Activity on the Android part. I…
Jendrik
  • 57
  • 9
1
vote
1 answer

How can I get a list of all packages with their license from a Podfile.lock?

Due to compliance reasons, I need to generate a list of all software packages we use with their licenses. Also for indirect (transitive) dependencies. I know how to do the same with Python using pkg.get_metadata_lines("PKG-INFO") or for JavaScript…
Martin Thoma
  • 124,992
  • 159
  • 614
  • 958
1
vote
0 answers

How to delete specific LD_FLAG in xcconfig through Podfile script?

I am trying to delete a certain "-framework SwiftProtobuf" in OTHER_LDFLAGS from the .xcconfig file in XCode because it is causing a conflict with another library: "Class _TtC13SwiftProtobuf17AnyMessageStorage is implemented in both…
1
vote
1 answer

Issue when installing cocoapods in terminal "zsh: abort pod install"

zsh shell m1 Macbook pro already installed cocoapods, then used pod init and that worked fine, opened Podfile in Xcode to edit it, and getting an error when use the pod install command.
1
vote
1 answer

Is it possible to exclude specific pods when building to iOS simulator?

Currently I'm facing a problem, that one of my projects can't be built to arm64 simulator when using one of the Google MLKit's pods. I was searching all around the internet, but couldn't find anything similar to this. Is it somehow possible to…
luke
  • 103
  • 1
  • 1
  • 7
1
vote
1 answer

abstract target causing wrong output folder name

I'm trying to setup multiple variants for my React Native project (expo on bare workflow), I'm using the eas official documentation to do it (https://docs.expo.dev/build-reference/variants/) As the documentation says I wrapped my original podfile…
Juan Salvador Portugal
  • 1,233
  • 4
  • 20
  • 38