Ravindra-Ravi Verma
Ravindra-Ravi Verma

Reputation: 535

How to publish android Apk to Jfrog artifactory

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

Answers (1)

Ortsigat
Ortsigat

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

Related Questions