Reputation: 55
While building gradle i got error like
Error:Error:line (29)Supplied String module notation 'com.com_.android.volley' is invalid. Example notations: 'org.gradle:gradle-core:2.2', 'org.mockito:mockito-core:1.9.5:javadoc'.
My app/build.gradle code
Upvotes: 0
Views: 846
Reputation: 20140
Add version of volley artifact in build.gradle file.
compile 'com.android.volley:volley:1.0.0'
Upvotes: 0