I am using gson parser (latest version -> 2.8.2).
I would like to use RuntimeTypeAdapterFactory which is part of the gson extras.
In my build.gradle
As mention in the maven page https://mvnrepository.com/artifact/com.google.code.gson/gson-extras/2.8.5!
you need to use the specified maven repo
Note: this artifact it located at CronApp repository (https://artifactory.cronapp.io/public-release/)
in gradle you can add custom repositories that way:
repositories {
maven { url "https://artifactory.cronapp.io/public-release/" }
mavenCentral()
}