From 877a6a0f11e5e4e405f29c8798393831d1c5593a Mon Sep 17 00:00:00 2001 From: Rafael Miranda Date: Thu, 8 Mar 2018 06:49:24 +0100 Subject: [PATCH] swapped compile to implementation (#407) As of gradle 3.0 `compile` is deprecated and should be replace by `implementation` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84b70f5..7847f0a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Add the following dependency to your `build.gradle` file: ``` dependencies { - compile 'com.google.android:flexbox:0.3.2' + implementation 'com.google.android:flexbox:0.3.2' } ``` -- GitLab