René's URL Explorer Experiment


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

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@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[![](https://i.stack.imgur.com/vVIbc.png)](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[![](https://i.stack.imgur.com/c9cbq.png)](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-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:5177cea0-175f-5cd3-33ca-07e40a515629
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB194:383949:22B7A98:3017B26:69779C5E
html-safe-nonce9a395f1f8805de6bc9375588e268dc1449501752b6f3f7c9e9537c90b6fd28f5
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMTk0OjM4Mzk0OToyMkI3QTk4OjMwMTdCMjY6Njk3NzlDNUUiLCJ2aXNpdG9yX2lkIjoiNzYyOTg2MjgxNTg3OTYzNDAxNCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacf847c025f4627df674697ab7ab35c9610d295cb3df37efeed1188cd21fa81a02
hovercard-subject-tagissue:1826026136
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/udemy/XcodeGen-Example-Project/1/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9415c377eabb0736e5da0d37e0d0f3f4f1ef7b2a7e350aa9c1f719dcce5d8e6b/udemy/XcodeGen-Example-Project/issues/1
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9415c377eabb0736e5da0d37e0d0f3f4f1ef7b2a7e350aa9c1f719dcce5d8e6b/udemy/XcodeGen-Example-Project/issues/1
og:image:altHello! 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:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamepedroramos1449
hostnamegithub.com
expected-hostnamegithub.com
Nonee10aafdf5297192c9b24eb4c1705326a9448d90025c2907ca863f7e62d40627d
turbo-cache-controlno-preview
go-importgithub.com/udemy/XcodeGen-Example-Project git https://github.com/udemy/XcodeGen-Example-Project.git
octolytics-dimension-user_id1714691
octolytics-dimension-user_loginudemy
octolytics-dimension-repository_id328033378
octolytics-dimension-repository_nwoudemy/XcodeGen-Example-Project
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id328033378
octolytics-dimension-repository_network_root_nwoudemy/XcodeGen-Example-Project
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release6ba450e9e3f0dbffd9b797b93684cf55e32593e3
ui-targetcanary-1
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues/1#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fudemy%2FXcodeGen-Example-Project%2Fissues%2F1
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fudemy%2FXcodeGen-Example-Project%2Fissues%2F1
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=udemy%2FXcodeGen-Example-Project
Reloadhttps://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues/1
Reloadhttps://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues/1
Reloadhttps://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues/1
udemy https://patch-diff.githubusercontent.com/udemy
XcodeGen-Example-Projecthttps://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fudemy%2FXcodeGen-Example-Project
Fork 2 https://patch-diff.githubusercontent.com/login?return_to=%2Fudemy%2FXcodeGen-Example-Project
Star 8 https://patch-diff.githubusercontent.com/login?return_to=%2Fudemy%2FXcodeGen-Example-Project
Code https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project
Issues 2 https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues
Pull requests 0 https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/pulls
Actions https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/actions
Projects 0 https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/projects
Security 0 https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/security
Insights https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/pulse
Code https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project
Issues https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues
Pull requests https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/pulls
Actions https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/actions
Projects https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/projects
Security https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/security
Insights https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/udemy/XcodeGen-Example-Project/issues/1
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/udemy/XcodeGen-Example-Project/issues/1
XCodegen is not detecting some downloaded Podshttps://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues/1#top
https://github.com/pedroramos1449
https://github.com/pedroramos1449
pedroramos1449https://github.com/pedroramos1449
on Jul 28, 2023https://github.com/udemy/XcodeGen-Example-Project/issues/1#issue-1826026136
https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues/url
https://patch-diff.githubusercontent.com/udemy/XcodeGen-Example-Project/issues/url
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.