Replies: 4 comments 2 replies
-
There appears to be several issues... Deployment Target
This means that GoogleUserMessagingPlatform declares a higher minimum deployment target than the App project. By default cordova uses iOS 11 deployment target, which means you intend to support iOS 11 and later. But if you have a framework like GoogleUserMessagingPlatform that defines a higher deployment target (say 13 for example) then it will this error because if a framework doesn't support iOS 11, how can your app support iOS 11? To address this, you'll have to find out the actual deployment target of GoogleUserMessagingPlatform, then you can use Cordova's As an example, this is what you would have in your <preference name="deployment-target" value="13.0" /> LD_RUNPATH_SEARCH_PATHS
This is telling you have your build target (presumably your app) overrides The solution is to use xcode-select: error: tool 'xcodebuild' requires Xcode,This seems to suggest that you don't have XCode installed, just the xcode command line tools. You'll need to install XCode from the App Store. |
Beta Was this translation helpful? Give feedback.
-
Hello, Thank you for your help @breautek . We can start with the first problem. I have been trying to apply the solution you indicate, but I see in my config.xml I don't have the parameter you say. I have also looked in the index.html because it appears as source, but I have not seen the parameter either. I have attached the complete log after executing "cordova platform add iOS" command and also the config.xml, but as GitHub did not let me use that format I have moved it to txt. In case it can help. Specs satisfying the GoogleUserMessagingPlatform (~> 2.0.0), GoogleUserMessagingPlatform (= 2.1.0, >= 1.1) dependency were found, but they required a higher minimum deployment target. |
Beta Was this translation helpful? Give feedback.
-
Good Morning, Thanks a lot for all your help. I'm getting better, now another error is appearing. I found the last problem. Ruby was on version 2.6.0 and Cocoapods was installed on version 1.8.4, I installed cocoapods version 1.13.0 via homebrew and never used by Cordova. Failed to install 'admob-plus-cordova': Error: Command failed with exit code 1: pod --version deprecate to_default_s: :to_s, deprecator: ActiveSupport.deprecator deprecate to_default_s: :to_s, deprecator: ActiveSupport.deprecator |
Beta Was this translation helpful? Give feedback.
-
Good Morning @breautek , I have tried different solutions, I have installed and uninstalled both ruby, cordova, cocoapods... I can't get it to work. Do you think I could send you the complete game exported from Gdevelop so you can try to reproduce the error? Maybe then we can find the solution, because I don't know what else to try. Thank you very much! |
Beta Was this translation helpful? Give feedback.
-
Hello!
I have created a game with Gdevelop. It works perfectly on Windows, MacOS and Android, but when I want to compile it to send it to Xcode and create the iOS version I get the following error:
I have tried a solution that I found on the internet that in principle seems to regenerate the framework:
Once this is done, the following command should work, but I get this error:
Could you please help me? I don't know how to solve it.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions