0

I am looking for a solution for the following problem, I have been looking around and I only found resources on how to use libraries in Github.

The problem is the following:

I have an Android Studio project that contains both java libraries and native libraries (to add native libraries I followed the advice in this answer)

The libraries I am using are not available anywhere online (I am using the Zlib Qr Code library) so I want to push them to Github...

Please do you know how to do it?

Community
  • 1
  • 1
Lisa Anne
  • 4,482
  • 17
  • 83
  • 157

1 Answers1

1

GitHub is a source version control system and not very suitable for binaries. Please consider using a proper binary repository for that purpose. I recommend you look at Bintray. It's a very easy to upload the libraries to and to consume them from Gradle.

JBaruch
  • 22,610
  • 5
  • 62
  • 90