Android Studio 3.1. now prints this warning: ``` ...
# android
d
Android Studio 3.1. now prints this warning:
Copy code
Configuration 'compile' is obsolete and has been replaced with 'implementation'.
But
git grep compile
in my whole source tree gives 0 results. So I assume this is some gradle plugin contributing those outdated statements. Is there any way to quickly spot which one (without manually removing them one-by-one?)
l
run
./gradlew :app:dependencies --configuration compile
will give the
compile
dependencies, in my case, the
gms:play-services-basement
which is include in
firebase-core
is reported as a compile dependency
👍 3
m
Yeah, surprisingly it’s all about firebase-core…
d
Thanks! In my case it was
com.crashlytics.sdk.android:crashlytics:2.9.0