I have a library (which we will name "test.aar" here), and i need to implement it inside an Android Project.
However, hosting it on Maven, as far as i know, is Open Source, and anyone can access it.
I am looking for a way to host the "test.aar" library somewhere with a "private mode".
What i mean by "private mode" is actually some credentials or tokens/keys to allow the access to "test.aar".
i would like to maybe use it like that inside build.gradle with credentials:
dependencies {
implementation "io.test-lib:test-lib:1.0.0"
}
PS : I have to do it remotely and ideally free (can pay if needed but not too expensive).