Add development instructions, credits, and licenses sections.

This commit is contained in:
Dylan Vann 2017-04-28 11:27:58 -04:00
parent 77cd58a272
commit e1c7b98362
1 changed files with 34 additions and 0 deletions

View File

@ -106,3 +106,37 @@ Called on a successful image fetch.
`onError?: () => void`
Called on an image fetching error.
## Development
```bash
# Install SDWebImage submodules.
git submodule update --init --recursive
# Install npm deps.
yarn
```
To update the example project modules you will need to run:
```bash
rm -rf node_modules && npm i
```
In the example folder. The npm usage is because
yarn will cache locally installed packages and not update them
if the version does not change.
## Credits
The idea for this modules came from
[vovkasm's](https://github.com/vovkasm)
[react-native-web-image](https://github.com/vovkasm/react-native-web-image)
package.
It also uses Glide and SDWebImage, but didn't have some features I needed (priority, headers).
## Licenses
* FastImage [MIT]
* SDWebImage (included) [MIT]
* Glide (included via gradle) [Apache 2.0 License]