Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix maven url, update version #861

Merged
merged 3 commits into from
Dec 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ Easy ways to learn how to use `StorIO` -> check out `Documentation`, `Design Tes
#### Download:
```groovy
// If you need StorIO for SQLite
compile 'com.pushtorefresh.storio3:sqlite:2.0.0'
compile 'com.pushtorefresh.storio2:sqlite:2.1.0'

// If you need StorIO for ContentResolver
compile 'com.pushtorefresh.storio3:content-resolver:2.0.0'
compile 'com.pushtorefresh.storio2:content-resolver:2.1.0'

// IN StorIO 2.0 we will remove default Scheduling from Rx Operations!
// You'll have to put subscribeOn() manually!
Expand All @@ -54,7 +54,8 @@ compile 'com.pushtorefresh.storio3:content-resolver:2.0.0'
// So if you need it -> please add it manually.
```

You can find all releases on [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.pushtorefresh.storio3%22).
You can find all releases on [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Ccom.pushtorefresh.storio2).


#### Some examples

Expand Down Expand Up @@ -157,18 +158,18 @@ To **save you from coding boilerplate classes** we created **Annotation Processo
`StorIOSQLite`:
```groovy
dependencies {
compile 'com.pushtorefresh.storio3:sqlite-annotations:insert-latest-version-here'
compile 'com.pushtorefresh.storio2:sqlite-annotations:insert-latest-version-here'

annotationProcessor 'com.pushtorefresh.storio3:sqlite-annotations-processor:insert-latest-version-here'
annotationProcessor 'com.pushtorefresh.storio2:sqlite-annotations-processor:insert-latest-version-here'
}
```

`StorIOContentResolver`:
```groovy
dependencies {
compile 'com.pushtorefresh.storio3:content-resolver-annotations:insert-latest-version-here'
compile 'com.pushtorefresh.storio2:content-resolver-annotations:insert-latest-version-here'

annotationProcessor 'com.pushtorefresh.storio3:content-resolver-annotations-processor:insert-latest-version-here'
annotationProcessor 'com.pushtorefresh.storio2:content-resolver-annotations-processor:insert-latest-version-here'
}
```

Expand Down