Skip to content

Commit 2ae3f01

Browse files
committed
1.7.0
1 parent c6ecb0a commit 2ae3f01

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

README.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,21 @@ Android JSON viewer, to convert JSON Strings to a Friendly Readable Format, it s
88
## Dependencies
99

1010
```
11-
compile 'com.yuyh.json:jsonviewer:1.0.6'
11+
buildscript {
12+
repositories {
13+
...
14+
maven { url "https://jitpack.io" }
15+
}
16+
dependencies {
17+
...
18+
}
19+
}
20+
```
21+
22+
```
23+
dependencies {
24+
implementation 'com.github.smuyyh:JsonViewer:1.0.7'
25+
}
1226
```
1327

1428
## Usage

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ android {
2626
dependencies {
2727
implementation 'com.android.support:appcompat-v7:28.0.0'
2828
implementation 'com.android.support:recyclerview-v7:28.0.0'
29-
implementation project(':jsonviewer')
30-
//compile 'com.yuyh.json:jsonviewer:1.0.1'
29+
// implementation project(':jsonviewer')
30+
implementation 'com.github.smuyyh:JsonViewer:1.0.7'
3131
}

0 commit comments

Comments
 (0)