I've gone over the docs several times and I can't seem to figure out the correct groupId/artifactId to get this dependency to install/resolve:
extras/android/support/v7/appcompat/libs/android-support-v7-appcompat.jar
Here are the relevant dependencies I've got so far
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v4</artifactId>
<version>21.0.3</version>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>support-v13</artifactId>
<version>21.0.3</version>
<type>aar</type>
<exclusions>
<exclusion>
<artifactId>support-v4</artifactId>
<groupId>com.android.support</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>appcompat-v7</artifactId>
<version>21.0.3</version>
<type>aar</type>
<exclusions>
<exclusion>
<artifactId>support-v4</artifactId>
<groupId>com.android.support</groupId>
</exclusion>
</exclusions>
</dependency>
I've gone over the docs several times and I can't seem to figure out the correct groupId/artifactId to get this dependency to install/resolve:
extras/android/support/v7/appcompat/libs/android-support-v7-appcompat.jar
Here are the relevant dependencies I've got so far