Skip to content

Commit

Permalink
Added gradle import content
Browse files Browse the repository at this point in the history
  • Loading branch information
teogor committed Apr 12, 2021
1 parent 004adcb commit 7a1f87b
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
# Eyejet
Lifecycle-aware shared observable data holder class for android.

### 1. Depend on our library

Eyejet Library is available through Maven Repository.
To use it:

1. Open the `build.gradle` file for your application.
2. Make sure that the `repositories` section includes Maven Repository
`mavenCentral()`. For example:
```groovy
allprojects {
repositories {
mavenCentral()
}
}
```

3. Add the library to the `dependencies` section:
```groovy
dependencies {
// ...
// declare eyejet version
def eyejet_version = "x.y.z"
// Eyejet Library
implementation("com.zeoflow:eyejet:$eyejet_version")
// Optional - the eyejet library works without these dependencies
implementation("com.zeoflow:eyejet-annotation:$eyejet_version")
implementation("com.zeoflow:eyejet-arch:$eyejet_version")
// ...
}
```

## License
Copyright (C) 2021 ZeoFlow S.R.L.

Expand Down
35 changes: 35 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
# Eyejet
Lifecycle-aware shared observable data holder class for android.

### 1. Depend on our library

Eyejet Library is available through Maven Repository.
To use it:

1. Open the `build.gradle` file for your application.
2. Make sure that the `repositories` section includes Maven Repository
`mavenCentral()`. For example:
```groovy
allprojects {
repositories {
mavenCentral()
}
}
```

3. Add the library to the `dependencies` section:
```groovy
dependencies {
// ...
// declare eyejet version
def eyejet_version = "x.y.z"
// Eyejet Library
implementation("com.zeoflow:eyejet:$eyejet_version")
// Optional - the eyejet library works without these dependencies
implementation("com.zeoflow:eyejet-annotation:$eyejet_version")
implementation("com.zeoflow:eyejet-arch:$eyejet_version")
// ...
}
```

## License
Copyright (C) 2021 ZeoFlow S.R.L.

Expand Down

0 comments on commit 7a1f87b

Please sign in to comment.