Runtime Execption java.lang.NoClassDefFoundError: retrofit2.Platform in Android

后端 未结 3 969
小鲜肉
小鲜肉 2021-01-13 09:33

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

3条回答
  •  一整个雨季
    2021-01-13 10:00

    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)

    2) Set multiDexEnabled true (file build.gradle)

    3) Add android:name="android.support.multidex.MultiDexApplication" (file AndroidManifest.xml)

    
     
    

提交回复
热议问题