Studio2bDesigns
Studio2bDesigns

Reputation: 648

Steps to include a Library from github into my project prior to compiling and publishing?

As the title suggests, I'm using a library from github in my App.
In AndroidStudio, I simply enter the address for the repository into my Gradle file as dependency.

But when it comes time to compile and actually publish my App to the PlayStore, what must I do?
Some Libraries on GitHub have links to a JAR or AAR file, but many other do NOT.

Bottom Line: How to make sure a github library stays working in my App, prior to publishing?
In the case that a github Library simply references a repository address, what must I do?

Thanks all.

Upvotes: 0

Views: 52

Answers (1)

Gabe Sechan
Gabe Sechan

Reputation: 93708

Nothing. If you've added it as a gradle dependency, it will be in the apk.

Upvotes: 1

Related Questions