-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Xcode 10 new build system makes asset catalog invalid specified by podspec'sresource(s)
#8122
Comments
I am having similar issue too. clean and rebuild will include all assets. but when I re-run the project, Assets.car will be empty, recompiled without assets from pods. It seems the "re-run" doesn't copy the assets from pods. I had to switch back to legacy build system on Xcode 10. Please fix this. |
I havent verified but this might be the same issue as this #8073 Worth trying master to see if it fixes it and use:
Other than that I need to find time to investigate this so I am uncertain yet if its a CocoaPods issue or an Xcode 10 new build system issue. |
@samirGuerdah Thanks for your workaround. I have already known this way can make it work. But I also hope this issue can be solved when using new build system. |
Uncertain yet if its a CocoaPods bug itself or new build system bug. It appears that switching to legacy makes it work for folks. I haven't had the time to investigate it though. |
@dnkoutso Remind |
@ooopscc there is no specific time an issue will be dealt with. This is mostly handled by free time of a few folks. If you need this faster I highly recommend to investigate the sources, otherwise I cannot provide a time frame sorry. |
It is ok to leave it alone for now, because I can use legacy build system. I post this issue not asking for workaround, I already know it. I think it’s not compatible with new build system, just solve it whenever it’s convenient for you. Thanks. |
Trying to investigate this issue. Found that warning is fixed by removing input/output paths (or using related install option). But assets are still not present on incremental builds just like @ansonbtl described. |
*.xcassets of Copy Bundle Resources --> Assets.car |
Great guess! Anyone have ideas how to guarantee [CP] Copy Pods Resource execution after Copy Bundle Resources? |
It seems I found the solution. Placing
As for the warning about duplicated output, if we remove Assets.car from output files of the script, it is not executed at all. Seems that build system do not see that script processes it + there are no changes in input files. Thus it is skipped. The warning itself does not cause any change in the build process as I can see. I guess we can ignore this warning since it is a known issue with provided workaround . Thus I hope it will be fixed by Apple at some point. I also inspected build system @dnkoutso I want to create PR that will incorporate the fix and changes above. I found that I can modify the script in copy_resources_script.rb, but I do not see where I can alter script`s input and output files. Maybe you can help me? Meanwhile the workaround for new build system will be to copy |
@OneSman7 Probably here.
|
@dnkoutso I try to put the action that @OneSman7 describes in post_install hook, but fails. post_install do |installer|
app_project = installer.aggregate_targets.first.user_project
main_target = app_project.targets.first
build_phases = main_target.build_phases.grep(Xcodeproj::Project::Object::PBXShellScriptBuildPhase)
phase = build_phases[1] # This is [CP] Copy Pod Resources phase, just for testing.
phase.input_paths.clear
phase.shell_script = ""
app_project.save
end |
@ooopscc as I see your script removes any code from |
@OneSman7 Thanks for the details. The hook I wrote is just a test to see if the modification will work. The full script should add the |
I see. I do not know what is reverting your changes, but I think that modifying anything except for Pods project in post install hook can have unexpected consequences since it was not intended. |
It seems I overestimated my Ruby skills, my current workload and the complexity of CocoaPods project. The origin of the issue is described in full detail above. To reenable pods assets in incremental builds we need to add In CocoaPods/lib/cocoapods/installer/user_project_integrator/target_integrator.rb in
I also studied
I was thinking about adding additional options to
These additions can bring support for on demand resources and improve debugging (they enable app resources thinning in debug builds, which decreases resources compile time and helps testing app thinning). |
Thank you @OneSman7 for the very thorough investigation and explanation! For others trying to find a workaround, one option is to add the following to your project's Podfile:
This would make sure that every time |
Unfortunately, @matt-loflin's script didn't quite work for me, though I appreciate seeing that script spelled out. Using the script produced the following compiler error on my project:
I'm surprised more people aren't hitting this issue. For me, that warning about duplicated output file on Assets.car isn't benign. My assets (colors in xcassets) don't actually load at runtime. I was able to reproduce this issue with the finished tutorial project on raywenderlich.com (https://www.raywenderlich.com/5823-how-to-create-a-cocoapod-in-swift). With that project, you see the same warning. And at runtime, you see Seems like using xcassets as |
I've also been having trouble with @matt-loflin's script. However, when I run According to this StackOverflow answer, the script would have to be run after the "Integrating client project" step, but there are no installer hooks that run after the project integrator: |
I don't think so,If this is true,Why first time run it was work? |
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. |
Use legacy is not work on xcode10.2. Have some idea? |
+1. Still broken for the new build system in Xcode 10.2. |
+1. Still broken for the new build system in Xcode 10.2. |
@adamgins I put it just under |
This fixes a bug with a duplicate Assets.car output path but also slows down incremental build as Xcode will rebuild asset catalogs every time. See: CocoaPods/CocoaPods#8122
Adding this to podfile
And changing the copy pods order worked for us |
If you want to avoid the incremental compilation time hit, using |
Yeap! The change you highlighted fixed a long standing issue also for development pods and dynamic frameworks #8073. However, other issues regarding XCAssets are still remaining. |
So, legacy build system is being deprecated and we will not be able to use cocoapods with the new one. Is there any workaround without performance issues? |
@zaptrem I can confirm we still have the same issue with Xcode 12 beta1 (12A6159) |
If it helps anyone. So use_frameworks! :linkage => :static
dynamic_frameworks = ['Pod1', 'dependentPod']
pre_install do |installer|
installer.pod_targets.each do |pod|
if dynamic_frameworks.include?(pod.name)
puts "Overriding the build_as_dynamic_framework? method for #{pod.name}"
def pod.build_as_dynamic_framework?;
true
end
def pod.build_type;
Pod::BuildType.dynamic_framework
end
end
end
end |
this solution worked for me as well. only need to check that all the Pod dependencies that you're using are also implementing |
There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. |
Still not working properly |
any progress? |
Report
What did you do?
ℹ Please replace these two lines with what you did.
Xcode 10 new build system, CocoaPods 1.5.3.
Private pod (named Pod1), podspec: s.resources = ['Pod1/Assets/*'], this folder includes a asset catalog(images.xcassets).
Pod install and compile
What did you expect to happen?
image in Pod1's images.xcassets do not show in UI by using -[UIImage imageNamed:] with new build system
What happened instead?
CocoaPods Environment
Stack
Installation Source
Plugins
Podfile
Project that demonstrates the issue
cocoapods-resources.zip
I didn't show image in demo app, just open the build artifact and show package content of .app to see if Asset.car contains the image in Pod1/Assets/images.xcassets
Investigation
I have read the Build System Release Notes for Xcode 10, it said
The problem is I don't know how to ensure all asset catalogs are processed in same build phase for the target.
Any advice or guidance would be greatly appreciated.
The text was updated successfully, but these errors were encountered: