I installed Android Studio yesterday, and after battling multiple java and other errors, I have come to an error that I cannot seem to fix. I have not added anything or done
The configuration compile
is obsolete and has been replaced with implementation
and api
.
You should use:
implementation 'com.android.support:design:23.0.0'
or:
implementation 'com.android.support:design:28.0.0'
as per your compileSDK version instead of:
compile 'com.android.support:design:23.0.0'