Reputation: 535
I want to upload my apk to Jfrog artifactory, i have seen artical to upload aar file on artifactory but doesn't find way to upload apk on artifactory.
Upvotes: 3
Views: 2854
Reputation: 1309
You can easily deploy any type of file or artifact to Artifactory via REST api or using the JFrog CLI.
for example, a simple REST deploy would look like:
curl -uMyUser:MyPassword -T <Path to your apk> "http://<Artifactory server>:port/artifactory/<Your Generic Repo>/<Your apk file path>"
Upvotes: 5