This is a question I could not really find an answer to.
Even though I replaced all compile with implementation in my gradle file, I still get a warning that says
Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.It will be removed at the end of 2018.
Therefore, I assume one or more of my dependencies still use compile instead of implementation.
My questions here would be:
Is replacing all the
compilewithimplementationin our own grade file enough?Assuming a few of those dependencies are unmaintained and they contain
compile, what would be the suggestion to follow, keeping in mind that support forcompilewill be removed at the end of 2018?
I would appreciate any guidance. Thanks