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
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:
You may like these posts
Post a Comment for "NoClassDefFoundError When Using Android Volley"