From d5f805f2400d11d250a60981cc5cf27260cc7ed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arda=20=C3=87ebi?= Date: Sun, 6 May 2018 01:06:13 +0300 Subject: [PATCH] Replacement of "compile" with "implementation" As "compile" is going to be deprecated end-2018, this PR replaces with "implementation" that is the new usage. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ecae945..3650e85 100644 --- a/README.md +++ b/README.md @@ -24,16 +24,16 @@ Including in your project The library is pushed to Maven Central as a AAR, so you just need to add the following dependency to your `build.gradle`. dependencies { - compile 'com.github.manuelpeinado.fadingactionbar:fadingactionbar:3.1.2' + implementation 'com.github.manuelpeinado.fadingactionbar:fadingactionbar:3.1.2' } If your project doesn't use the stock action bar, but one of the compatibility implementations, you would use the following: dependencies { // Use the following if your project uses ActionBarCompat - compile 'com.github.manuelpeinado.fadingactionbar:fadingactionbar-abc:3.1.2' + implementation 'com.github.manuelpeinado.fadingactionbar:fadingactionbar-abc:3.1.2' // Or the following if your project uses ActionBarSherlock - compile 'com.github.manuelpeinado.fadingactionbar:fadingactionbar-abs:3.1.2' + implementation 'com.github.manuelpeinado.fadingactionbar:fadingactionbar-abs:3.1.2' }