Gson library in Android Studio

后端 未结 6 580
轮回少年
轮回少年 2020-12-02 21:48

Can someone give me step by step guide to add the Gson library to an Android project?

I tried the JSON built-in library but that seems to be a bit tedi

6条回答
  •  盖世英雄少女心
    2020-12-02 22:17

    Gradle:

    dependencies {
       implementation 'com.google.code.gson:gson:2.8.5'
    }
    

    Maven:

    
      com.google.code.gson
      gson
      2.8.5 
    
    

    Gson jar downloads are available from Maven Central.

提交回复
热议问题