skip to Main Content

android – Running app fails with error 'com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex' – Facebook api

I am trying to run my application on my phone but during build time it fails with the following error: Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'. java.lang.RuntimeException: java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex What I tried so far, but to no…

VIEW QUESTION

Retrofit response code 405 with message "method not allowed here" – Plesk

I am using retrofit and I have a post request interface NetworkApi { @Headers("Content-Type: application/json") @POST("/") fun startLoginRequest(@Body loginModel : LoginModel) : Call<BaseResponseModel> class Factory { var retrofit = Retrofit.Builder() .baseUrl(BASE_URL) .addConverterFactory(GsonConverterFactory.create()) .build() companion object{ fun getApi (): NetworkApi {…

VIEW QUESTION
Back To Top
Search