-
Notifications
You must be signed in to change notification settings - Fork 361
[FR] Generate :podspec parameter in Podfile using iOSResolver XML? #452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I think what you are looking for is the sources tag, so it would look something like:
For another example, see this sample: unity-jar-resolver/sample/Assets/ExternalDependencyManager/Editor/SampleDependencies.xml Lines 82 to 92 in 30b4f92
I'm not sure if that will work with a relative path, so you might need the full path. Please give it a try, and let us know if that solves the issue. |
Thanks for the suggestion. I have tried using The generated Podfile doesn't include
After doing
From my understanding,
Is there a way for me to set the Thanks |
I actually tried you sample and Here is my experiment that works:
Perhaps you can try to verify if your path is correct? Otherwise, could you post the content of your |
Hi @chkuang-g , Yes, the Pods.proj: My assumption is that when using The ISAdmobAdapter.framework is actually inside the ISAdMobAdapter4.3.19.zip , in "source" -> "http":
When trying with
This resulting a Pods.proj with complete structure: Pods This is the expected result . Without Please let me know if you need further details. I will get more. Thanks |
I see. Thanks for including extra details. Seems like neither Basically:
I will change this to FR. Feel free to send us a Pull Request and we can include this in the next release sooner. :) |
Thank you for the fix! In fact I am not quite familiar with Github Pull Request nor I have experience working with Github yet. Currently I am using the External Dependency Manager v1.2.165 , in which there is iOSResolver v1.2.165.dll . I guess I will be waiting for the next release of iOSResolver to use it then. Thank you. |
Hey I have made a Pull Request for this issue. I am unsure if all is fine though. Please verify it and let me know if changes are required then. |
I would recommend you to build it locally by running the following command if you are using Mac.
Make sure you setup You can test and use the local build in your project immediately and does not need to wait for the next release. :) Thank you for the PR. I'll take a look in a bit. |
Hi, I have tried to build locally on Windows and encounter this issue #423 . Seems like building the plugin on Windows is having bug at the moment. My main workstation is Windows. It will take some time to get familiar with gradle on Mac. I will try to build it on Mac later then. Thanks |
Hi, sorry for the late response. I am stuck in development recently. Here is a quick update on this. I have tried to setup the build on Mac. After hitting
I will look into it afterwards then. if you have any suggestions, please kindly let me know then. Thanks |
[REQUIRED] Please fill in the following fields:
[REQUIRED] Please describe the question here:
Hi, due to the need of using old AdMob version (v7.69), I am trying to modify a released Pod "IronSourceAdMobAdapter" so it can be compatible with a higher version of "IronSourceSDK". I have downloaded and edited "IronSourceAdMobAdapter.podspec.json" as below:
Now it comes the tricky part. When I am trying to use "path" in Dependencies.xml , it didn't work as Cocoapods didn't try to get the "http" . However, when changing
:path
to:podspec
in Podfile, it worked.My question is, how do I generate the
:podspec
parameters using Dependencies.xml instead of having to edit Podfile manually? I tried as below but it didn't work.Thanks
The text was updated successfully, but these errors were encountered: