侧边栏壁纸
博主头像
996worker

祇園精舎の鐘の聲, 諸行無常の響き有り。

  • 累计撰写 199 篇文章
  • 累计创建 47 个标签
  • 累计收到 8 条评论

目 录CONTENT

文章目录

Some open-source tools/plugins for android development

996worker
2021-07-03 / 0 评论 / 0 点赞 / 261 阅读 / 791 字
温馨提示:
本文最后更新于 2021-07-24,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

These are some open source tools i am using recently, just write them down.

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

2. Some Tools:

  • 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.
0

评论区