9,660 questions
-2
votes
0
answers
45
views
Command PhaseScriptExecution failed with a nonzero exit code or "Improperly formatted define flag" [closed]
Final Working Solution (after struggling with this bug for a long time)
I ran into this issue after reinstalling Android Studio (I use it for Flutter).
For a long time I tried to fix the error by ...
0
votes
0
answers
51
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
44
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
38
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
171
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
30
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
134
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
86
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
96
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
27
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
198
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 ...
0
votes
0
answers
101
views
Flutter iOS: "Multiple commands produce .app" error on Xcode 16.4. Even legacy build system fails
I keep getting these "Multiple commands produce" errors when building my Flutter iOS app. This started after updating to macOS 15.6 and Xcode 16.4.
Error:
Error (Xcode): Multiple commands ...
1
vote
0
answers
49
views
How to use custom framework with third-party framwork in my test ios project?
I have a test ios project.
And I built my custom framework. The custom framework uses thirt-party framework using cocoapods: for example, Alamofire Library.
My custom framework's build is successfull.
...