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
Landry Norris
06/12/2023, 6:50 PM
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
Jacob Rhoda
06/12/2023, 6:50 PM
How does Gradle find the dependency?
l
Landry Norris
06/12/2023, 6:57 PM
You declare it in the repositories block. GitHub has a document on how to set this up.