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
there is currently a single compile directive:
compile 'com.google.code.gson:gson:2.8.2'
However this gives me only the gson lib without the extras (RuntimeTypeAdapterFactory is not recognized in the project...).
I have looked at gson extras' pom file (https://github.com/google/gson/blob/master/extras/pom.xml) and
tried to add below line to my build gradle:
compile 'com.google.code.gson:gson-extras:2.8.2'
But gradle just won't compile the gson extras:
"Error:Failed to resolve: com.google.code.gson:gson-extras:2.8.2"
Any Idea how to make this work?
Thank you very much for your time and assistance in this matter.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…