@@ -24,7 +24,7 @@ We are very thankful to goweii Goweii and mbacuiz.
24
24
In order to use the library, add the following line to your ** root** gradle file:
25
25
26
26
27
- 1 . Add dependency in build.gradle of project app directory
27
+ 1.Add dependency in build.gradle of project app directory
28
28
Starting from version 4.13.1, v is not added before the version number, and you need to pay attention to it when
29
29
quoting.
30
30
```
@@ -35,16 +35,26 @@ quoting.
35
35
implementation project(':reveallayout')
36
36
}
37
37
```
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
39
40
entry/build.gradle file.
40
41
```
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.
47
50
51
+ ```
52
+ dependencies {
53
+ implementation 'dev.applibgroup:reveallayout:1.0.0'
54
+ testCompile 'junit:junit:4.12'
55
+ }
56
+
57
+ ```
48
58
## Usage
49
59
50
60
To use RevealLayout in your app simply follow below simple steps:
0 commit comments