How to use Jfrog Artifactory packages in an gradle file in an android project
I have uploaded a few binary files in maven format to the jfrog artifactory, but could not seem to be able to resolve them in my project. This is what I am essentially doing,
build.gradle(app)
implementation 'io.sariska:sariska-media-transport:5.0.9'
build.gradle (project level)
allprojects { apply plugin: 'maven-publish' repositories { google() jcenter() maven { url = "https://ift.tt/3eeNfhF" } } }
Am I missing something here?
from Recent Questions - Stack Overflow https://ift.tt/3Fz0UfH
https://ift.tt/3eesGSt
Comments
Post a Comment