Jerry
08/14/2023, 2:12 PMConsumable configurations with identical capabilities within a project (other than the default configuration) must have unique attributes, but configuration ':common:podDebugFrameworkIosFat' and [configuration ':common:debugFrameworkIosFat'] contain identical attribute sets. Consider adding an additional attribute to one of the configuration
I've no clue.Jeff Lockhart
08/14/2023, 3:27 PMXCFramework()
or binaries { framework { ... } }
block in your build configuration? The CocoaPods plugin has its own framework building Gradle tasks, which conflict with these. You should remove those and use the CocoaPods plugin's tasks. If you really need them both, you can disambiguate the tasks by adding a unique attribute to one of them. There's a YouTrack issue with an example of this.iXPert12
08/14/2023, 3:27 PMJerry
08/15/2023, 6:56 AMJeff Lockhart
08/15/2023, 2:51 PMXCFramework
with the CocoaPods plugin with the podPublishXCFramework
Gradle task.