Reputation: 1792
I've an app and a library that supports the app, everything is fine ( I can compile the app with the library dependency
And the build.gradle
file is always with this error:
Cannot resolve symbol MavenDeployment on gradle
Any ideas?
Upvotes: 13
Views: 7714
Reputation: 4869
Making gradle version as 3.1.0 in the project level build.gradle fixed it.
classpath 'com.android.tools.build:gradle:3.1.0'
Upvotes: 1