Browse Source

Merge pull request #402 from adennie/fix-support-deps

Fix support deps
Aidan Follestad 10 năm trước cách đây
mục cha
commit
331a8dfac6
1 tập tin đã thay đổi với 4 bổ sung3 xóa
  1. 4 3
      library/build.gradle

+ 4 - 3
library/build.gradle

@@ -18,9 +18,10 @@ android {
 
 dependencies {
     compile fileTree(dir: 'libs', include: ['*.jar'])
-    compile 'com.android.support:appcompat-v7:22.0.0'
-    compile 'com.android.support:support-annotations:21.0.3'
-    compile 'com.android.support:recyclerview-v7:21.0.3'
+    compile 'com.android.support:support-v4:22.0.0@aar'
+    compile 'com.android.support:appcompat-v7:22.0.0@aar'
+    compile 'com.android.support:support-annotations:22.0.0'
+    compile 'com.android.support:recyclerview-v7:22.0.0@aar'
 }
 
 publish {