Skip to content

Commit

Permalink
gradle compile to implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Yellu committed Mar 12, 2018
1 parent 5e3d6d6 commit 8457e24
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
18 changes: 9 additions & 9 deletions UltimateRecyclerView/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ repositories {
maven { url "http://dl.bintray.com/jjhesk/maven" }
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "com.android.support:appcompat-v7:${SUPPORT_LIBRARY}"
compile "com.android.support:cardview-v7:${SUPPORT_LIBRARY}"
debugCompile "com.squareup.leakcanary:leakcanary-android:${LEAKCANARY}"
releaseCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAKCANARY}"
testCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAKCANARY}"
compile 'com.google.android.gms:play-services:11.8.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:appcompat-v7:${SUPPORT_LIBRARY}"
implementation "com.android.support:cardview-v7:${SUPPORT_LIBRARY}"
debugImplementation "com.squareup.leakcanary:leakcanary-android:${LEAKCANARY}"
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:${LEAKCANARY}"
testImplementation "com.squareup.leakcanary:leakcanary-android-no-op:${LEAKCANARY}"
implementation 'com.google.android.gms:play-services:11.8.0'
implementation 'com.android.support:multidex:1.0.3'
compile 'com.hkm.loyalslider:library:1.6.2'
compile project(':ultimaterecyclerview')
implementation 'com.hkm.loyalslider:library:1.6.2'
implementation project(':ultimaterecyclerview')
//used in the gridlayout
// compile 'com.hkm.loyalslider:library:1.4.5' exclude group: 'android.support.v13'

Expand Down
15 changes: 7 additions & 8 deletions UltimateRecyclerView/ultimaterecyclerview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "com.android.support:appcompat-v7:${SUPPORT_LIBRARY}"
compile "com.android.support:support-v13:${SUPPORT_LIBRARY}"
compile "com.android.support:recyclerview-v7:${SUPPORT_LIBRARY}"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:appcompat-v7:${SUPPORT_LIBRARY}"
implementation "com.android.support:support-v13:${SUPPORT_LIBRARY}"
implementation "com.android.support:recyclerview-v7:${SUPPORT_LIBRARY}"
//compile 'com.nineoldandroids:library:2.4.0'
compile 'in.srain.cube:ultra-ptr:1.0.11'
compile 'com.github.bumptech.glide:glide:4.6.1'
implementation 'in.srain.cube:ultra-ptr:1.0.11'
implementation 'com.github.bumptech.glide:glide:4.6.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.6.1'
compile 'jp.wasabeef:recyclerview-animators:2.2.3'

implementation 'jp.wasabeef:recyclerview-animators:2.2.3'
}

//apply from: 'android-release-aar.gradle'
Expand Down

0 comments on commit 8457e24

Please sign in to comment.