
1. Firstly, in mainland China, I need to use maven mirror.
repositories {
maven { url 'https://maven.aliyun.com/repository/google/' }
maven { url 'https://maven.aliyun.com/repository/public/' }
maven { url "https://s01.oss.sonatype.org/content/groups/public" }
google()
mavenCentral()
}
- Glide: Can be used when I get image or video URLs from server, it can load them to the View. GitHub Address
- okhttp: Handle GET/POST GitHub Address
- Banner: A rotating container that can be customized. GitHub Address
- lombok: Don't need to talk more. pojo.
- fastjson: Convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object. GitHub Address
3. Some plugins:
- GsonFormatPlus: IntelliJ and Android Studio. Automatically generate model class from Json string. Install in IDE.
评论区