Closed samtstern closed 6 years ago
@vanniktech I don't see [5.0.9,)
, but 5.9.0
is latest.
Ok I found the issue. The Android support library changed how they make the pom.xml
files.
Here are the dependencies for support-v4
version 25.2.0
:
<dependencies>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-compat</artifactId>
<version>25.2.0</version>
<type>aar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-media-compat</artifactId>
<version>25.2.0</version>
<type>aar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-core-utils</artifactId>
<version>25.2.0</version>
<type>aar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-core-ui</artifactId>
<version>25.2.0</version>
<type>aar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-fragment</artifactId>
<version>25.2.0</version>
<type>aar</type>
<scope>compile</scope>
</dependency>
</dependencies>
And here are the dependencies for support-v4
version 26.1.0
:
<dependencies>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-compat</artifactId>
<version>26.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-media-compat</artifactId>
<version>26.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-core-utils</artifactId>
<version>26.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-core-ui</artifactId>
<version>26.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-fragment</artifactId>
<version>26.1.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
You can see they're no longer specifying <type>aar</type>
. I will file a bug with the support lib people.
Looks like the issue was fixed after 27.0.0: https://issuetracker.google.com/67576406
That link you sent out is only accessible to googlers.
@vanniktech thanks! Replace with public link. Our internal proxy always redirects to the corporate version, leading to a lot of copy-paste blunders.
That works now, thanks.
Still struggling with Android though.
11.6.0 gives me this:
11.8.0:
12.0.1: