9,656 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
45
views
ld: framework 'Pods_MyProjectName' not found
I just reset my MacBook Pro M1 Pro and updated it to MacOS Tahoe 26.2. I cloned my Expo (bare workflow) app, installed XCode and CocoaPods using brew, updated ruby to v3.1.4 and ran "pod install&...
-1
votes
1
answer
77
views
Why The singleton in KMP is two different instances in iOS and Kotlin Mutliple Platform [closed]
I got an object(singleton) in kotlin Multiple platform(KMP)
Like:
object SqIOSApiRegister {
private var initialized = false
val lock = NSLock()
init {
if (initialized) {
...
1
vote
0
answers
90
views
Parse Issue (Xcode): Module 'mobile_scanner' not found
I am using the mobile_scanner package in my Flutter project for barcode/QR code scanning.
Here is how and where I use it in the code:
1. pubspec.yaml
dependencies:
flutter:
sdk: flutter
...
0
votes
0
answers
86
views
CocoaPods install error: "version of CocoaPods used to generate the lockfile (1.16.2) is higher than the current executable (1.15.2)" in react native
I'm working on a React Native iOS project using React Native 0.81.4, and I'm getting a CocoaPods–related error when running:
Installing Ruby Gems
Installing CocoaPods dependencies with New ...
1
vote
0
answers
82
views
Kotlin Multiplatform: Incompatible 'embedAndSign' Task with CocoaPods Dependencies in Xcode
I have a Kotlin Multiplatform Mobile project (KMP) targeting Android + iOS. My setup:
Kotlin version: 2.2.21
Kotlin Multiplatform plugin: 2.2.21
CocoaPods plugin in build.gradle.kts:
plugins {
...
Best practices
0
votes
0
replies
46
views
Can you confirm how we can omit the library reference in the child library, and enforce the container app to install those dependent linbraries
I am creating the React native application, where I have added the Google Map dependecy using Cocoapod. However, I need to integrate a Native IOS library distributed using SPM which intenally is using ...
0
votes
0
answers
199
views
Flutter 3.35 iOS build fails on Apple Silicon (M3/M4): 'Flutter/Flutter.h' file not found
I'm on a MacBook Air 2025 M4 (Apple Silicon) using Flutter 3.35.5 on channel stable, Xcode 26.0.1, and CocoaPods 1.16.2.
Actual Setup:
Component
Version
macOS
15.0 Sequoia
CPU
Apple M4 (ARM64)
Flutter
...
0
votes
0
answers
35
views
React native: Searching for inspections failed: undefined method `map' for nil:NilClass
While upgrading react native version from 0.80.2 to 0.81.4, npm run ios --verbose , throws this error:
error Searching for inspections failed: undefined method `map' for nil:NilClass
report....
0
votes
0
answers
36
views
App flavouring issue with multiple targets
I am configuring my app to have different targets like Staging and Production so I can switch configuration on one go from staging to production and visa versa.
I created different targets and ...
7
votes
3
answers
3k
views
Flutter iOS Build Fails After Xcode 26 Update: "Unable to find module dependency: 'CTweetNacl'"
Problem Description
After updating to Xcode 26, my Flutter iOS project fails to build with the following error:
Swift Compiler Error (Xcode): Unable to find module dependency: 'CTweetNacl'
Could not ...
0
votes
1
answer
151
views
Xcode build fails with return code 65 during Azure DevOps pipeline archive step (Swift project with submodules)
I’m trying to build and archive an iOS project in an Azure DevOps pipeline, but the build keeps failing with return code 65 when running the Xcode@5 task.
The project structure:
Root repo contains CI/...
0
votes
0
answers
95
views
Cordova and Xcode ios how to modify existing podfile post_install config
How can I add post_install configurations to an existing podfile that already has a post_install section? I need to add a line to fix a build clang ld linker error to debug-iphonesimulator myapp....
0
votes
1
answer
103
views
Flutter Integration using Cocoapods. FlutterPluginRegistrant development pod not building due to `sqflite_darwin`
I am using CocoaPods v1.16.2 and Xcode 16.3.
I have a native iOS app in which a few screens need to be built using flutter.
For that, I have integrated Flutter into the iOS project using CocoaPods by ...
0
votes
0
answers
28
views
In case of using same library in framework and iOS App
I have a custom framework(a.framework) using Alamofire v1.0. (version is jsut example)
And I have a My App using the custom framework(a.framework).
The my App using Alamofire v2.0.
No conficts?
In ...
0
votes
0
answers
224
views
Use Swift open source library with SPM
I have a React Native app using Expo, and I need to integrate a Swift open-source library that doesn’t have any React Native bindings. Since I need to make some custom modifications to that library, I ...