Skip to content

Commit

Permalink
[Doc] update compile to implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
agrosner committed Oct 21, 2018
1 parent 58c6a1f commit cee64f0
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions usage2/including-in-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This repo is used to publish the artifacts. It also enables [dynamic builds](htt
```groovy
allProjects {
repositories {
google()
google()
// required to find the project's artifacts
// place last
maven { url "https://www.jitpack.io" }
Expand All @@ -48,27 +48,25 @@ Add artifacts to your project:
// if only using Java, use this. If using Kotlin do NOT use this.
annotationProcessor "com.github.agrosner.dbflow:processor:${dbflow_version}"
// core set of libraries
compile "com.github.agrosner.dbflow:core:${dbflow_version}"
compile "com.github.agrosner.dbflow:lib:${dbflow_version}"
implementation "com.github.agrosner.dbflow:core:${dbflow_version}"
implementation "com.github.agrosner.dbflow:lib:${dbflow_version}"
// sql-cipher database encryption (optional)
compile "com.github.agrosner.dbflow:sqlcipher:${dbflow_version}"
compile "net.zetetic:android-database-sqlcipher:${sqlcipher_version}@aar"
implementation "com.github.agrosner.dbflow:sqlcipher:${dbflow_version}"
implementation "net.zetetic:android-database-sqlcipher:${sqlcipher_version}@aar"
// RXJava 2 support
compile "com.github.agrosner.dbflow:reactive-streams:${dbflow_version}"
implementation "com.github.agrosner.dbflow:reactive-streams:${dbflow_version}"
// Kotlin Coroutines
compile "com.github.agrosner.dbflow:coroutines:${dbflow_version}"
implementation "com.github.agrosner.dbflow:coroutines:${dbflow_version}"
// Android Architecture Components Paging Library Support
compile "com.github.agrosner.dbflow:paging:${dbflow_version}"
implementation "com.github.agrosner.dbflow:paging:${dbflow_version}"
// adds generated content provider annotations + support.
compile "com.github.agrosner.dbflow:contentprovider:${dbflow_version}"
implementation "com.github.agrosner.dbflow:contentprovider:${dbflow_version}"
}
```

0 comments on commit cee64f0

Please sign in to comment.