Skip to content Skip to sidebar Skip to footer

Noclassdeffounderror When Using Android Volley

I am trying to make a network request using android volley library: StringRequest jsObjRequest = new StringRequest(Request.Method.GET, Network.getFullUrl('/Acco

Solution 1:

To work with Volley we need to define the dependency into the gradle file in Android project's app module:

dependencies {
    ...
    compile'com.android.volley:volley:1.1.0'
}

you can see the latest versions of Volley here.

more information:

Transmitting Network Data Using Volley

Post a Comment for "Noclassdeffounderror When Using Android Volley"