Skip to content

Commit 8e31cf3

Browse files
committed
Added the maven dependancy in README file
1 parent bedf8bb commit 8e31cf3

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

Images/RevealLayoutDemoImage.png

274 KB
Loading

README.md

+18-8
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ We are very thankful to goweii Goweii and mbacuiz.
2424
In order to use the library, add the following line to your **root** gradle file:
2525

2626

27-
1. Add dependency in build.gradle of project app directory
27+
1.Add dependency in build.gradle of project app directory
2828
Starting from version 4.13.1, v is not added before the version number, and you need to pay attention to it when
2929
quoting.
3030
```
@@ -35,16 +35,26 @@ quoting.
3535
implementation project(':reveallayout')
3636
}
3737
```
38-
2. For using RevealLayout from a remote repository in separate application, add the below dependencies in
38+
39+
2.For using RevealLayout in separate application using har file, add the har file in the
3940
entry/build.gradle file.
4041
```
41-
dependencies {
42-
implementation fileTree(dir: 'libs', include: ['*.jar'])
43-
testImplementation 'junit:junit:4.13.1'
44-
ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200'
45-
}
46-
```
42+
dependencies {
43+
implementation fileTree(dir: 'libs', include: ['*.har'])
44+
testImplementation 'junit:junit:4.13.1'
45+
ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200'
46+
}
47+
```
48+
49+
3.For using RevealLayout from a remote repository in separate application, add the below dependencies in entry/build.gradle file.
4750

51+
```
52+
dependencies {
53+
implementation 'dev.applibgroup:reveallayout:1.0.0'
54+
testCompile 'junit:junit:4.12'
55+
}
56+
57+
```
4858
## Usage
4959

5060
To use RevealLayout in your app simply follow below simple steps:

0 commit comments

Comments
 (0)