Reputation: 403
What i did:
I have a library module(.aar) depends on many external .aar libraries
So, I pushed the .aar libraries to remote repository(bintray-> maven)(With reference link - https://inthecheesefactory.com/blog/how-to-upload-library-to-jcenter-maven-central-as-dependency/en )
Library module working
What i need to know:
Bintray is free only for public Git repositories,when i use "private",its costly.
Is there any way to use dependency .aar in Android projects,with private access?
Upvotes: 0
Views: 589
Reputation: 1190
To host private aar files you have two options:
1) Use a private repository hosting service such as Bintray or JitPack premium.
2) Setup your own server and host aar files there. Use Jfrog Artifactory link and host it in a server of your choice. Artifactory is free to use and has many features including private access and user management.
Upvotes: 2