You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 11, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,26 @@ This project uses [sqlite-jdbc](https://bitbucket.org/xerial/sqlite-jdbc) to cre
12
12
13
13
## Adding to your project
14
14
15
-
To integrate sqliteAnalyzer into your project, it is recommended for now that you depend directly on the sources. See the setup under the `buildSrc` sub-directory for an example.
15
+
To integrate sqliteAnalyzer into your project, it is recommended for now that you depend directly on the sources. See the setup under the
16
+
`buildSrc` sub-directory for an example.
16
17
17
-
After you've added the sources to `buildSrc`, you can start using this library, add these lines to the `build.gradle` of your project:
18
+
If you prefer you can use it from jcenter directly, just add these lines to the build.gradle of your project:
18
19
19
20
```groovy
20
-
apply plugin: 'sqlite-access'
21
+
buildscript {
22
+
repositories {
23
+
jcenter()
24
+
}
25
+
dependencies {
26
+
classpath 'com.novoda:sqlite-analyzer:0.0.1-beta'
27
+
}
28
+
}
29
+
```
30
+
31
+
After you've added the sources to `buildSrc` or added the buildscript dependency, you can start using this library, add these lines to the `build.gradle` of your project:
0 commit comments