Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
MeilCli committed Aug 13, 2019
1 parent b4be1dc commit 4676f2d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Mindy
[![Build Status](https://dev.azure.com/MobileAct/Mindy/_apis/build/status/MobileAct.Mindy?branchName=master)](https://dev.azure.com/MobileAct/Mindy/_build/latest?definitionId=1&branchName=master) [ ![Download](https://api.bintray.com/packages/mobile-act/Mindy/Mindy/images/download.svg) ](https://bintray.com/mobile-act/Mindy/Mindy/_latestVersion)

Mindy is Minimum Dependency Injection library.

Feature:
Expand All @@ -7,6 +9,24 @@ Feature:
- Create parameterized instance

## Usage
### Install
build.gradle
```groovy
allprojects {
repositories {
google()
jcenter()
maven{ url "https://dl.bintray.com/mobile-act/Mindy" } // need!
}
}
```

```groovy
dependencies {
implementation 'mobile-act:mindy:VERSION' // adapt latest version
}
```

### Simple
```kotlin
val mindy = Mindy()
Expand Down

0 comments on commit 4676f2d

Please sign in to comment.