i am using Rtofit to handling the Serverside Data from Mobile After Implementing the Retrofit I am Getting the below Exception any know about this issue tell me where i am d
I had the same problem. Possible solution (fixed my problem):
1) Add gradle dependency: compile 'com.android.support:multidex:1.0.0' (file build.gradle)
compile 'com.android.support:multidex:1.0.0'
2) Set multiDexEnabled true (file build.gradle)
multiDexEnabled true
3) Add android:name="android.support.multidex.MultiDexApplication" (file AndroidManifest.xml)
android:name="android.support.multidex.MultiDexApplication"