I made a library that I only intend to use in-hous...
# ios
j
I made a library that I only intend to use in-house. What is the best way to depend on that library from my app? Do I just include it in my app’s repository, or do I have to host it in an internal maven repository? I’m only familiar with Cocoapods / Swift Package Manager / Carthage.
l
I've used GitHub Package Repository for this before. If the repository is private, it will need an access token to get the artifacts.
j
How does Gradle find the dependency?
l
You declare it in the repositories block. GitHub has a document on how to set this up.