How to add Gson extras to an Android project?

后端 未结 3 1761
猫巷女王i
猫巷女王i 2020-12-11 18:49

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

3条回答
  •  不思量自难忘°
    2020-12-11 19:25

    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()
    }
    

提交回复
热议问题