rodrigosimoesrosa
rodrigosimoesrosa

Reputation: 1719

How do I host Github repository to Gradle

I have a repository on Github, I would like to use my repository in Android Studio using: dependencies {compile 'com.google.code.gson: Gson: 2+'} for gradle. Does someone know how to do this?

Upvotes: 1

Views: 1266

Answers (3)

Andrejs
Andrejs

Reputation: 27677

You could use JitPack.io to expose your repository as a Maven dependency. Then including it in Android Studio is easy with gradle:

compile 'com.github.YourUsername:RepoName:ReleaseVersion'

There are more instructions on the website.

Upvotes: 6

visd0m
visd0m

Reputation: 46

I don't know if I really got the question...I understood that you want to compile some jar files that are not local to your project and are hosted in your repository. If it is the matter, I guess you should use a custom maven repository, not a Github one. If this is the problem I can give you more details on how to create a custom maven repo.

Upvotes: 1

Related Questions