Browse Source

Provided dependencies can no longer be library projects, only JARs.

Aidan Follestad 10 years ago
parent
commit
ba87695683
1 changed files with 1 additions and 1 deletions
  1. 1 1
      library/build.gradle

+ 1 - 1
library/build.gradle

@@ -20,7 +20,7 @@ dependencies {
     compile fileTree(dir: 'libs', include: ['*.jar'])
     compile fileTree(dir: 'libs', include: ['*.jar'])
     compile 'com.android.support:appcompat-v7:21.0.3'
     compile 'com.android.support:appcompat-v7:21.0.3'
     compile 'com.android.support:support-annotations:21.0.3'
     compile 'com.android.support:support-annotations:21.0.3'
-    provided 'com.android.support:recyclerview-v7:21.0.3'
+    compile 'com.android.support:recyclerview-v7:21.0.3'
 }
 }
 
 
 publish {
 publish {