Jitpack.io: Task 'install' is ambiguous in root project

Created on 20 Dec 2017  路  3Comments  路  Source: jitpack/jitpack.io

  1. Trying to build this Android library: https://github.com/budowski/android-maps-utils
  2. This is just a forked version of: https://github.com/googlemaps/android-maps-utils
  3. The output of gradlew install:
    Task 'install' is ambiguous in root project 'android-maps-utils'. Candidates are: 'installDebug', 'installDebugAndroidTest'.
  4. Looking at a similar closed issue (#19), it seems that the error is caused by android-maven plugin not being installed.
  5. However, the plugin is installed (as instructed here: https://jitpack.io/docs/BUILDING/)
    See here:
    https://github.com/budowski/android-maps-utils/blob/master/build.gradle#L27
    https://github.com/budowski/android-maps-utils/blob/master/library/build.gradle#L2
    https://github.com/budowski/android-maps-utils/blob/master/demo/build.gradle#L2

Most helpful comment

Worked for me after adding the classpath to root gradle and applying plugin to the library

classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'

apply plugin: 'com.github.dcendents.android-maven'

https://github.com/jitpack/jitpack.io/blob/master/ANDROID.md

All 3 comments

Managed to work it out by looking at other forks of android-maps-utlis that used jitpack.
Still getting the same error locally, though.

Worked for me after adding the classpath to root gradle and applying plugin to the library

classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'

apply plugin: 'com.github.dcendents.android-maven'

https://github.com/jitpack/jitpack.io/blob/master/ANDROID.md

I'm having the same issue, but it didn't occur before. How come?

I got it here on v3 here, but not on the older version, v2 :
https://jitpack.io/#AndroidDeveloperLB/ArcAnimator/

Only after adding what "EbenezerGH" wrote, it worked fine (published on v6) ...

What's so special about this? I never had to add this before...

Was this page helpful?
0 / 5 - 0 ratings

Related issues

mannodermaus picture mannodermaus  路  3Comments

Hala-Nearmotion picture Hala-Nearmotion  路  4Comments

jtang-ml picture jtang-ml  路  4Comments

afollestad picture afollestad  路  5Comments

bsideup picture bsideup  路  4Comments