Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 426 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 426 Bytes

AndroILD Logo

An Image Loading delegate to common Android Image Loading Libraries

API

// For drawable resources
AndroILD.newRequest()
    .load(R.drawable.logo)
    .into(imageView)

// For network resources
AndroILD.newRequest()
    .load("https://github.com/sriharshachilakapati/AndroILD/raw/main/AndroILD.png")
    .into(imageView)

Maven URLs will be given once the API becomes stable.