-1

ERROR: When working with Retrofit, the application crashes with the following error: java.lang.ExceptionInInitializerError.

private const val MAIN_URL = "https://api.main.com"
private const val ADDITIONAL_URL = "/trending"
Shreyas Sanil
  • 532
  • 1
  • 7
  • 19

1 Answers1

0

{/} the whole problem is slash it should be at the end of the main URL and not at the beginning of the additional.

private const val MAIN_URL = "https://api.main.com/"
private const val ADDITIONAL_URL = "trending"
Dharman
  • 30,962
  • 25
  • 85
  • 135