Title: XCodegen is not detecting some downloaded Pods · Issue #1 · udemy/XcodeGen-Example-Project · GitHub
Open Graph Title: XCodegen is not detecting some downloaded Pods · Issue #1 · udemy/XcodeGen-Example-Project
X Title: XCodegen is not detecting some downloaded Pods · Issue #1 · udemy/XcodeGen-Example-Project
Description: Hello! How you guys doing? I converted my whole project to XCodegen. My project has multiple modules and all the libraries are downloaded via Cocoapods. But, I've got a problem on the SharedFrontend module. In this module (Sharedfrontend...
Open Graph Description: Hello! How you guys doing? I converted my whole project to XCodegen. My project has multiple modules and all the libraries are downloaded via Cocoapods. But, I've got a problem on the SharedFronten...
X Description: Hello! How you guys doing? I converted my whole project to XCodegen. My project has multiple modules and all the libraries are downloaded via Cocoapods. But, I've got a problem on the SharedFro...
Opengraph URL: https://github.com/udemy/XcodeGen-Example-Project/issues/1
X: @github
Domain: patch-diff.githubusercontent.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"XCodegen is not detecting some downloaded Pods","articleBody":"Hello!\r\nHow you guys doing?\r\n\r\nI converted my whole project to XCodegen.\r\n\r\nMy project has multiple modules and all the libraries are downloaded via Cocoapods.\r\n\r\n[](url)\r\n\r\nBut, I've got a problem on the SharedFrontend module. In this module (Sharedfrontend) I import \"Tracker\" which from ATInternet-Apple-SDK, but Xcode or project doesn't detect it, and give me a error saying: \"No Such Module Tracker\", BUT It has the Tracker on the pods, and it did download it...\r\n\r\nThat leads me think ( I can be wrong ) that the problem are the pods not being recognised on SharedFrontend, which is why I am here today :)\r\n\r\nMy SharedFrontend .YML file:\r\n\r\n ```\r\n\u003e name: SharedFrontend\r\n\u003e options:\r\n\u003e minimumXcodeGenVersion: 2.25\r\n\u003e groupSortPosition: top\r\n\u003e generateEmptyDirectories: true\r\n\u003e deploymentTarget:\r\n\u003e iOS: \"12.3\"\r\n\u003e targets:\r\n\u003e SharedFrontend:\r\n\u003e type: framework\r\n\u003e platform: iOS\r\n\u003e settings:\r\n\u003e PRODUCT_BUNDLE_IDENTIFIER: \"pt.custojusto.SharedFrontend\"\r\n\u003e GENERATE_INFOPLIST_FILE: YES\r\n\u003e scheme:\r\n\u003e gatherCoverageData: true\r\n\u003e sources:\r\n\u003e - path: SharedFrontend\r\n\u003e createIntermediateGroups: true\r\n\u003e \r\n\u003e SharedFrontendTests:\r\n\u003e type: bundle.unit-test\r\n\u003e platform: iOS\r\n\u003e sources:\r\n\u003e - path: SharedFrontendTests\r\n\u003e createIntermediateGroups: true\r\n\u003e dependencies:\r\n\u003e - target: SharedFrontendTests\r\n```\r\n\r\nPlus, above, a image of the Sharedfrontend module, wich you can see the pods are there:\r\n\r\n[](url)\r\n\r\nPlus, I've made a Script to run pod install every time xcodegen updates, which I think does not have anything to do with my problem itself, but can be helpful.\r\n\r\n```\r\n\u003e #!/bin/bash\r\n\u003e cd cj-ios\r\n\u003e xcodegen\r\n\u003e cd ..\r\n\u003e cd cj-pro/iosApp\r\n\u003e xcodegen\r\n\u003e cd ../..\r\n\u003e cd cj-uicomponents/iOS/UIComponents\r\n\u003e xcodegen\r\n\u003e cd ../../../\r\n\u003e cd cj-sharedfrontend/SharedFrontend\r\n\u003e xcodegen\r\n\u003e cd ../../\r\n\u003e pod install\r\n```\r\n\r\n\r\nAlso my Pod File here:\r\n\r\n```\r\n(..links)\r\nplatform :ios, '12.3'\r\n\r\nworkspace 'CustoJusto.xcworkspace'\r\n\r\nuse_frameworks!\r\nuse_modular_headers!\r\n\r\nproject 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\nproject 'cj-pro/iosApp/Account/Account.xcodeproj'\r\nproject 'cj-pro/iosApp/AdInsertion/AdInsertion.xcodeproj'\r\nproject 'cj-pro/iosApp/Authentication/Authentication.xcodeproj'\r\nproject 'cj-pro/iosApp/BuyOptions/BuyOptions.xcodeproj'\r\nproject 'cj-pro/iosApp/Dashboard/Dashboard.xcodeproj'\r\nproject 'cj-pro/iosApp/Messaging/Messaging.xcodeproj'\r\nproject 'cj-pro/iosApp/MyAds/MyAds.xcodeproj'\r\nproject 'cj-sharedfrontend/SharedFrontend/SharedFrontend.xcodeproj'\r\nproject 'cj-ios/CustoJusto.xcodeproj'\r\nproject 'cj-uicomponents/iOS/UIComponents/UIComponents.xcodeproj'\r\n\r\ndef messaging\r\n pod 'MessagingUIViews/Core', '~\u003e 20.20.0'\r\n pod 'Knocker', '9.2.0'\r\nend\r\n\r\ndef firebase\r\n pod 'Firebase/Core'\r\n pod 'Firebase/Crashlytics'\r\n pod 'Firebase/Analytics'\r\n pod 'Firebase/RemoteConfig'\r\nend\r\n\r\ndef common\r\n pod 'ATInternet-Apple-SDK/Tracker','\u003e=2.0'\r\n pod 'RxSwift','6.1.0'\r\n pod 'RxCocoa','6.1.0'\r\n pod 'configurator-ios', '0.1.6'\r\n pod 'Google-Mobile-Ads-SDK','~\u003e 9.0.0'\r\n pod 'GoogleUtilities'\r\n pod 'SwiftyGif'\r\n pod \"PianoAnalytics/iOS\", \"\u003e=3.0\"\r\nend\r\n\r\ntarget 'CustoJustoPro' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'Account' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'AdInsertion' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'Authentication' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'BuyOptions' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'Dashboard' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'Messaging' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'MyAds' do\r\n project 'cj-pro/iosApp/CustoJustoPro.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'SharedFrontend' do\r\n project 'cj-sharedfrontend/SharedFrontend/SharedFrontend.xcodeproj'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'CustoJusto' do\r\n project 'cj-ios/CustoJusto.xcodeproj'\r\n pod 'Eureka','5.3.4'\r\n common\r\n firebase\r\n messaging\r\nend\r\n\r\ntarget 'CoreCustoJusto' do\r\n project 'cj-ios/CustoJusto.xcodeproj'\r\n common\r\n messaging\r\n firebase\r\nend\r\n\r\ntarget 'CoreCustoJustoTests' do\r\n project 'cj-ios/CustoJusto.xcodeproj'\r\n pod 'Eureka','5.3.4'\r\n pod 'RxBlocking','6.1.0'\r\n pod 'RxTest','6.1.0'\r\n firebase\r\n common\r\n messaging\r\nend\r\n\r\ntarget 'CustoJustoUITests' do\r\n project 'cj-ios/CustoJusto.xcodeproj'\r\n pod 'Eureka','5.3.4'\r\n pod 'RxBlocking','6.1.0'\r\n pod 'RxTest','6.1.0'\r\n firebase\r\n common\r\n messaging\r\nend\r\n\r\ntarget 'UIComponents' do\r\n project 'cj-uicomponents/iOS/UIComponents/UIComponents.xcodeproj'\r\nend\r\n\r\n\r\npost_install do |installer|\r\n installer.pods_project.targets.each do |target|\r\n target.build_configurations.each do |config|\r\n config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.3'\r\n end\r\n end\r\nend\r\n```\r\n\r\n\r\nI hope you guys could help me, our give any hint. I am looking to this for a week now, and I didn't get any solution yet..\r\n\r\nReally Thanks!\r\n\r\nPeter","author":{"url":"https://github.com/pedroramos1449","@type":"Person","name":"pedroramos1449"},"datePublished":"2023-07-28T09:04:08.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/1/XcodeGen-Example-Project/issues/1"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:5177cea0-175f-5cd3-33ca-07e40a515629 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | B194:383949:22B7A98:3017B26:69779C5E |
| html-safe-nonce | 9a395f1f8805de6bc9375588e268dc1449501752b6f3f7c9e9537c90b6fd28f5 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMTk0OjM4Mzk0OToyMkI3QTk4OjMwMTdCMjY6Njk3NzlDNUUiLCJ2aXNpdG9yX2lkIjoiNzYyOTg2MjgxNTg3OTYzNDAxNCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | f847c025f4627df674697ab7ab35c9610d295cb3df37efeed1188cd21fa81a02 |
| hovercard-subject-tag | issue:1826026136 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/udemy/XcodeGen-Example-Project/1/issue_layout |
| twitter:image | https://opengraph.githubassets.com/9415c377eabb0736e5da0d37e0d0f3f4f1ef7b2a7e350aa9c1f719dcce5d8e6b/udemy/XcodeGen-Example-Project/issues/1 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/9415c377eabb0736e5da0d37e0d0f3f4f1ef7b2a7e350aa9c1f719dcce5d8e6b/udemy/XcodeGen-Example-Project/issues/1 |
| og:image:alt | Hello! How you guys doing? I converted my whole project to XCodegen. My project has multiple modules and all the libraries are downloaded via Cocoapods. But, I've got a problem on the SharedFronten... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | pedroramos1449 |
| hostname | github.com |
| expected-hostname | github.com |
| None | e10aafdf5297192c9b24eb4c1705326a9448d90025c2907ca863f7e62d40627d |
| turbo-cache-control | no-preview |
| go-import | github.com/udemy/XcodeGen-Example-Project git https://github.com/udemy/XcodeGen-Example-Project.git |
| octolytics-dimension-user_id | 1714691 |
| octolytics-dimension-user_login | udemy |
| octolytics-dimension-repository_id | 328033378 |
| octolytics-dimension-repository_nwo | udemy/XcodeGen-Example-Project |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 328033378 |
| octolytics-dimension-repository_network_root_nwo | udemy/XcodeGen-Example-Project |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 6ba450e9e3f0dbffd9b797b93684cf55e32593e3 |
| ui-target | canary-1 |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width