Abhishek Kumar
Abhishek Kumar

Reputation: 55

Error in Android studio gradle build

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

enter image description here

Upvotes: 0

Views: 846

Answers (1)

AAryan
AAryan

Reputation: 20140

Add version of volley artifact in build.gradle file.

 compile 'com.android.volley:volley:1.0.0'

Upvotes: 0

Related Questions