Skip to content Skip to sidebar Skip to footer

How Do I Properly Install Support-v7 Repo In Android Studio

Currently my dependencies look like: dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile files('libs/volley_1_0_8.jar') compile 'com.android.support:support-v4

Solution 1:

The current version of the support-v4 is 21.0.0. There is no such library as support-v7 - if you mean appcompat-v7, then that is also 21.0.0 as per gradleplease.appspot.com, which is a handy reference for the latest versions of various libraries.

The reason the SDK Manager has the version at 21.0.2 is because other parts of the support library (specifically, the Multidex support library) was changed since the initial release of version 21.0.0, but that did not change the support-v4 or other parts.


Post a Comment for "How Do I Properly Install Support-v7 Repo In Android Studio"