You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ever since upgrading to android studio 3.0, the artifactoryPublish task has been broken. Two strange issues occur, one the POM is missing the dependencies, this could be related to the fact android no longer uses compile in the dependencies but, api or implementation. The other issue seems to be the artifactoryPublish task does not wait for all sub projects to finish and instead tries to run while other assemble tasks are still running, thus causing missing file errors on publish.
The text was updated successfully, but these errors were encountered:
I have same problem maybe. I have a extended maven-publish plugin for publishing android artifacts. If I apply com.jfrog.artifactory plugin, I will get an error:
Configuration with name 'releaseRuntimeElements' not found.
I think the problem occurs, because the artifactory plugin collects the publications too early. Before android plugin has resolved the android specific configurations.
I found this issue in 4.7.1, but its working correctly in 4.5.0
Ever since upgrading to android studio 3.0, the artifactoryPublish task has been broken. Two strange issues occur, one the POM is missing the dependencies, this could be related to the fact android no longer uses compile in the dependencies but, api or implementation. The other issue seems to be the artifactoryPublish task does not wait for all sub projects to finish and instead tries to run while other assemble tasks are still running, thus causing missing file errors on publish.
The text was updated successfully, but these errors were encountered: